add others

This commit is contained in:
jyuesong
2022-01-17 16:42:46 +08:00
parent 105d6172b6
commit ad141e4bd1
18 changed files with 291 additions and 128 deletions

View File

@@ -1,4 +1,5 @@
import 'package:flutter/material.dart';
import 'package:qinglong_app/base/ql_app_bar.dart';
class OtherPage extends StatefulWidget {
const OtherPage({Key? key}) : super(key: key);
@@ -10,6 +11,14 @@ class OtherPage extends StatefulWidget {
class _OtherPageState extends State<OtherPage> {
@override
Widget build(BuildContext context) {
return Scaffold();
return SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.max,
children: [
],
),
);
}
}