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.
aku_new_community/lib/ui/profile/house/pick_plot_page.dart

20 lines
437 B

import 'package:flutter/material.dart';
import 'package:aku_community/widget/bee_scaffold.dart';
class PickPlotPage extends StatefulWidget {
3 years ago
PickPlotPage({Key? key}) : super(key: key);
@override
_PickPlotPageState createState() => _PickPlotPageState();
}
class _PickPlotPageState extends State<PickPlotPage> {
@override
Widget build(BuildContext context) {
return BeeScaffold(
title: '选择小区',
);
}
}