fix: some ui bug
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
sdk.dir=C:/Users/Housh11/AppData/Local/Android/Sdk
|
||||
flutter.sdk=C:\\src\\flutter
|
||||
flutter.buildMode=debug
|
||||
flutter.versionName=1.3.29
|
||||
flutter.versionCode=26
|
||||
flutter.buildMode=release
|
||||
flutter.versionName=1.3.30
|
||||
flutter.versionCode=27
|
||||
Binary file not shown.
@@ -26,7 +26,6 @@ class HomePage extends GetView<HomeLogic> {
|
||||
mainInformation(),
|
||||
SizedBox(height: 8.h),
|
||||
WidelyUsedWidget(),
|
||||
|
||||
],
|
||||
),
|
||||
),
|
||||
@@ -34,12 +33,14 @@ class HomePage extends GetView<HomeLogic> {
|
||||
}
|
||||
|
||||
Widget buildColumn(Widget widget, String title) {
|
||||
|
||||
return Container(
|
||||
height: 70.h,
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
spacing: 8, children: [widget, Text(title)]));
|
||||
height: 70.h,
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
spacing: 8,
|
||||
children: [widget, Text(title)],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
InkWell mainInformation() {
|
||||
@@ -440,6 +441,7 @@ class HomePage extends GetView<HomeLogic> {
|
||||
isLoading: data.value == null,
|
||||
description: data.value?.totalGovernmentalRemainWeight?.separatedByCommaFa ?? '0',
|
||||
iconPath: Assets.vec.cubeCardGovermentSvg.path,
|
||||
|
||||
iconColor: AppColor.textColor,
|
||||
bgDescriptionColor: const Color(0xFFF5ECEE),
|
||||
bgLabelColor: const Color(0xFFDEC1C7),
|
||||
|
||||
@@ -70,6 +70,9 @@ class StewardRootPage extends GetView<StewardRootLogic> {
|
||||
icon: Assets.vec.buySvg.path,
|
||||
isSelected: controller.currentPage.value == 0,
|
||||
onTap: () {
|
||||
Get.nestedKey(
|
||||
stewardFirstKey,
|
||||
)?.currentState?.popUntil((route) => route.isFirst);
|
||||
Get.nestedKey(
|
||||
stewardSecondKey,
|
||||
)?.currentState?.popUntil((route) => route.isFirst);
|
||||
@@ -85,6 +88,9 @@ class StewardRootPage extends GetView<StewardRootLogic> {
|
||||
Get.nestedKey(
|
||||
stewardFirstKey,
|
||||
)?.currentState?.popUntil((route) => route.isFirst);
|
||||
Get.nestedKey(
|
||||
stewardSecondKey,
|
||||
)?.currentState?.popUntil((route) => route.isFirst);
|
||||
controller.changePage(1);
|
||||
},
|
||||
),
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
name: rasadyar_app
|
||||
description: "A new Flutter project."
|
||||
publish_to: 'none'
|
||||
version: 1.3.29+26
|
||||
version: 1.3.30+27
|
||||
|
||||
environment:
|
||||
sdk: ^3.9.2
|
||||
|
||||
Reference in New Issue
Block a user