| | |
| | | import 'package:location/ui/mine/advice.dart'; |
| | | import 'package:location/ui/mine/permission.dart'; |
| | | |
| | | import 'location.dart'; |
| | | import 'mine.dart'; |
| | | |
| | | |
| | | void main() { |
| | | if (Platform.isAndroid) { |
| | |
| | | print("initState"); |
| | | _pages |
| | | ..add(AdvicePage(title: "建议")) |
| | | ..add(PermissionPage(title: "权限")) |
| | | ..add(LocationPage(title: "定位")) |
| | | ..add(MinePage(title: "我的")); |
| | | |
| | | super.initState(); |
| | |
| | | child: Flex( |
| | | direction: Axis.vertical, |
| | | children: [ |
| | | Expanded(child: _pages[selectIndex]), |
| | | Expanded( |
| | | child: |
| | | IndexedStack(index: selectIndex, children: _pages)), |
| | | Container( |
| | | height: 60, |
| | | ) |