|
|
@@ -173,7 +173,7 @@ class KeyBoardView extends BaseView<KeyBoardController> {
|
|
|
Widget _buildLoveIndexCard() {
|
|
|
return GestureDetector(
|
|
|
onTap: () {
|
|
|
- Platform.isIOS ? {} : controller.clickZodiacLoveIntimacy();
|
|
|
+ controller.clickZodiacLoveIntimacy();
|
|
|
},
|
|
|
child: Stack(
|
|
|
clipBehavior: Clip.none,
|
|
|
@@ -197,10 +197,10 @@ class KeyBoardView extends BaseView<KeyBoardController> {
|
|
|
),
|
|
|
child: Row(
|
|
|
children: [
|
|
|
- (Platform.isIOS
|
|
|
- ? Assets.images.iconKeyboardLoveIndexIos
|
|
|
- : Assets.images.iconKeyboardLoveIndex)
|
|
|
- .image(width: 72.w, height: 23.h),
|
|
|
+ Assets.images.iconKeyboardLoveIndex.image(
|
|
|
+ width: 72.w,
|
|
|
+ height: 23.h,
|
|
|
+ ),
|
|
|
SizedBox(width: 10.w),
|
|
|
Expanded(
|
|
|
child: Obx(() {
|