mirror of
https://github.com/RxReader/link_kit.git
synced 2025-08-14 10:46:15 +08:00
28 lines
444 B
Dart
28 lines
444 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
}
|
|
|
|
class MyApp extends StatefulWidget {
|
|
const MyApp({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
State<MyApp> createState() => _MyAppState();
|
|
}
|
|
|
|
class _MyAppState extends State<MyApp> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
home: Scaffold(
|
|
appBar: AppBar(
|
|
title: Text('Link Kit'),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|