parent
9aaba0905e
commit
a4a423eb38
@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
analyzer:
|
||||||
|
errors:
|
||||||
|
unused_import: error
|
@ -0,0 +1,24 @@
|
|||||||
|
import 'package:akuCommunity/widget/bee_scaffold.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class FacilityPage extends StatefulWidget {
|
||||||
|
FacilityPage({Key key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
_FacilityPageState createState() => _FacilityPageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _FacilityPageState extends State<FacilityPage> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return BeeScaffold(
|
||||||
|
title: '设施预约',
|
||||||
|
actions: [
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(Icons.add_circle_outline_rounded, color: Colors.black87),
|
||||||
|
onPressed: () {},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
import 'package:akuCommunity/widget/bee_scaffold.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class PickFacilityPage extends StatefulWidget {
|
||||||
|
PickFacilityPage({Key key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
_PickFacilityPageState createState() => _PickFacilityPageState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _PickFacilityPageState extends State<PickFacilityPage> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return BeeScaffold(
|
||||||
|
title: '选择设施',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue