Files
qinglong_app/lib/module/others/other_page.dart
2022-01-12 15:00:55 +08:00

16 lines
330 B
Dart

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();
}
}