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.
19 lines
434 B
19 lines
434 B
4 years ago
|
import 'package:akuCommunity/widget/bee_scaffold.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class PickPlotPage extends StatefulWidget {
|
||
|
PickPlotPage({Key key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
_PickPlotPageState createState() => _PickPlotPageState();
|
||
|
}
|
||
|
|
||
|
class _PickPlotPageState extends State<PickPlotPage> {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return BeeScaffold(
|
||
|
title: '选择小区',
|
||
|
);
|
||
|
}
|
||
|
}
|