mirror of
https://github.com/hackku21/loc-chain-app.git
synced 2026-03-02 03:40:13 +00:00
update to flutter 2.12.0
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class HomePage extends StatefulWidget {
|
||||
HomePage({Key key, this.title}) : super(key: key);
|
||||
HomePage({Key? key, required this.title}) : super(key: key);
|
||||
final String title;
|
||||
|
||||
@override
|
||||
|
||||
@@ -51,7 +51,7 @@ class KeyFileManager {
|
||||
}
|
||||
|
||||
class KeygenPage extends StatefulWidget {
|
||||
KeygenPage({Key key, this.title}) : super(key: key);
|
||||
KeygenPage({Key? key, required this.title}) : super(key: key);
|
||||
final String title;
|
||||
|
||||
@override
|
||||
|
||||
Reference in New Issue
Block a user