You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
598 B
25 lines
598 B
4 years ago
|
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: () {},
|
||
|
),
|
||
|
],
|
||
|
);
|
||
|
}
|
||
|
}
|