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.
38 lines
933 B
38 lines
933 B
import 'package:dating_touchme_app/components/page_appbar.dart';
|
|
import 'package:dating_touchme_app/controller/home/home_controller.dart';
|
|
import 'package:dating_touchme_app/pages/home/nearby_tab.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class MatchmakerPage extends StatefulWidget {
|
|
const MatchmakerPage({super.key});
|
|
|
|
@override
|
|
State<MatchmakerPage> createState() => _MatchmakerPageState();
|
|
}
|
|
|
|
class _MatchmakerPageState extends State<MatchmakerPage> with AutomaticKeepAliveClientMixin {
|
|
|
|
|
|
final HomeController controller = Get.find<HomeController>();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
super.build(context);
|
|
return Scaffold(
|
|
appBar: PageAppbar(title: "金牌红娘"),
|
|
body: Column(
|
|
children: [
|
|
Expanded(
|
|
child: NearbyTab(),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
|
|
@override
|
|
bool get wantKeepAlive => true;
|
|
}
|
|
|