mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-02-25 18:55:38 -06:00
dart fix
This commit is contained in:
parent
a5ffcee36f
commit
55fed573d6
@ -13,7 +13,7 @@ import 'history_wrapper.dart';
|
|||||||
|
|
||||||
// Main App
|
// Main App
|
||||||
class MyApp extends StatefulWidget {
|
class MyApp extends StatefulWidget {
|
||||||
const MyApp({Key? key}) : super(key: key);
|
const MyApp({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<MyApp> createState() => _MyAppState();
|
State<MyApp> createState() => _MyAppState();
|
||||||
|
@ -10,7 +10,7 @@ const kDefaultTerminalStyle = TerminalStyle(
|
|||||||
fontFamily: kDefaultMonoTerminalFontFamily);
|
fontFamily: kDefaultMonoTerminalFontFamily);
|
||||||
|
|
||||||
class LogTerminal extends StatefulWidget {
|
class LogTerminal extends StatefulWidget {
|
||||||
const LogTerminal({Key? key}) : super(key: key);
|
const LogTerminal({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
// ignore: library_private_types_in_public_api
|
// ignore: library_private_types_in_public_api
|
||||||
|
Loading…
Reference in New Issue
Block a user