Browse Source

优化完善

ios
王子贤 1 month ago
parent
commit
6bb73d6f5d
5 changed files with 5 additions and 2 deletions
  1. BIN
      android/app/src/main/res/drawable-v21/splash.png
  2. BIN
      android/app/src/main/res/drawable/splash.png
  3. 1
      lib/controller/home/real_home_controller.dart
  4. 4
      lib/pages/home/real_home_page.dart
  5. 2
      lib/pages/home/user_information_page.dart

BIN
android/app/src/main/res/drawable-v21/splash.png

Before After
Width: 562  |  Height: 1250  |  Size: 353 KiB Width: 562  |  Height: 1250  |  Size: 362 KiB

BIN
android/app/src/main/res/drawable/splash.png

Before After
Width: 562  |  Height: 1250  |  Size: 353 KiB Width: 562  |  Height: 1250  |  Size: 362 KiB

1
lib/controller/home/real_home_controller.dart

@ -43,6 +43,7 @@ class RealHomeController extends GetxController {
// //
final records = allRecords!.where((item) => !item.isLive).toList(); final records = allRecords!.where((item) => !item.isLive).toList();
recommendFeed.clear();
recommendFeed.addAll(records); recommendFeed.addAll(records);
update(); update();
} else { } else {

4
lib/pages/home/real_home_page.dart

@ -104,7 +104,9 @@ class _RealHomePageState extends State<RealHomePage> with AutomaticKeepAliveClie
) )
], ],
), ),
),
).onTap((){
controller.getListData();
}),
Row( Row(
children: [ children: [
Text( Text(

2
lib/pages/home/user_information_page.dart

@ -394,7 +394,7 @@ class UserInformationPage extends StatelessWidget {
), ),
), ),
Text( Text(
"趣恋恋ID:${userId}",
"快乐星球ID:${userId}",
style: TextStyle( style: TextStyle(
fontSize: 12.w, fontSize: 12.w,
color: const Color.fromRGBO(144, 144, 144, 1) color: const Color.fromRGBO(144, 144, 144, 1)

Loading…
Cancel
Save