mirror of
https://github.com/qinglong-app/qinglong_app.git
synced 2025-10-09 16:48:19 +08:00
add homepage
This commit is contained in:
15
lib/module/others/other_page.dart
Normal file
15
lib/module/others/other_page.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class OtherPage extends StatefulWidget {
|
||||
const OtherPage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
_OtherPageState createState() => _OtherPageState();
|
||||
}
|
||||
|
||||
class _OtherPageState extends State<OtherPage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user