mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-03 12:28:03 +08:00
feat: Move to Flutter 3.0.0 and Dart 2.17.0 (#1713)
This upgrades all packages to Flutter 3.0.0 and fixes all analyze issues that came from that.
This commit is contained in:
@ -7,7 +7,7 @@ import 'package:flutter_highlight/themes/github.dart';
|
||||
class CodeBlock extends StatelessWidget {
|
||||
final String value;
|
||||
|
||||
const CodeBlock({Key? key, required this.value}) : super(key: key);
|
||||
const CodeBlock({super.key, required this.value});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
||||
Reference in New Issue
Block a user