|
|
@@ -597,23 +597,23 @@ class MemberPage extends BasePage<MemberController> {
|
|
|
}
|
|
|
|
|
|
Widget buildVerticalSlideshowWidget() {
|
|
|
- return Obx(() {
|
|
|
- return Row(
|
|
|
- children: [
|
|
|
- Visibility(visible: !Platform.isIOS, child: Spacer()),
|
|
|
- Container(
|
|
|
- width: 192.w,
|
|
|
- height: 26.w,
|
|
|
- decoration: BoxDecoration(
|
|
|
- color: ColorName.black40,
|
|
|
- borderRadius: BorderRadius.circular(87.w),
|
|
|
- ),
|
|
|
- child: Center(
|
|
|
- child: AnimatedSwitcherWidget(
|
|
|
- controller: controller.switcherController)),
|
|
|
+ return Row(
|
|
|
+ children: [
|
|
|
+ Visibility(visible: !Platform.isIOS, child: Spacer()),
|
|
|
+ Container(
|
|
|
+ width: 192.w,
|
|
|
+ height: 26.w,
|
|
|
+ decoration: BoxDecoration(
|
|
|
+ color: ColorName.black40,
|
|
|
+ borderRadius: BorderRadius.circular(87.w),
|
|
|
),
|
|
|
- Spacer(),
|
|
|
- Visibility(
|
|
|
+ child: Center(
|
|
|
+ child: AnimatedSwitcherWidget(
|
|
|
+ controller: controller.switcherController)),
|
|
|
+ ),
|
|
|
+ Spacer(),
|
|
|
+ Obx(() {
|
|
|
+ return Visibility(
|
|
|
visible: Platform.isIOS && controller.accountRepository.isLogin.value,
|
|
|
child: GestureDetector(
|
|
|
onTap: controller.clickRecoverSubscribe,
|
|
|
@@ -636,10 +636,10 @@ class MemberPage extends BasePage<MemberController> {
|
|
|
),
|
|
|
),
|
|
|
)
|
|
|
- )
|
|
|
- ],
|
|
|
- );
|
|
|
- });
|
|
|
+ );
|
|
|
+ })
|
|
|
+ ],
|
|
|
+ );
|
|
|
}
|
|
|
|
|
|
Widget buildPrivacyPolicyView() {
|