4 changed files with 126 additions and 32 deletions
Split View
Diff Options
-
12lib/controller/home/timeline_info_controller.dart
-
38lib/pages/home/matchmaker_page.dart
-
11lib/pages/home/recommend_tab.dart
-
97lib/pages/home/timeline_info.dart
@ -0,0 +1,38 @@ |
|||
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; |
|||
} |
|||
|
|||
Write
Preview
Loading…
Cancel
Save