Commit 953738fd323f81fa364ccc70e1ebecc061197f45

Authored by 刘宏哲
1 parent 335cf3f5

feat(app): bug fixed

... ... @@ -35,12 +35,10 @@ class CustomWatchThemePreviewView
padding: EdgeInsets.only(top: topPadding, bottom: 96),
child: Column(
children: [
Obx(() {
return WatchThemeHeader(
title: controller.themeItem.title,
themeImageUrl: controller.themeItem.energeticImage,
);
}),
WatchThemeHeader(
title: controller.themeItem.title,
themeImageUrl: controller.themeItem.energeticImage,
),
const SizedBox(height: 26),
StatusPreviewCard(themeItem: controller.themeItem),
const SizedBox(height: 12),
... ...
... ... @@ -23,11 +23,9 @@ class WatchThemePreviewView extends GetView<WatchThemePreviewController> {
padding: EdgeInsets.only(top: topPadding, bottom: 96),
child: Column(
children: [
Obx(() {
return WatchThemeHeader(
themeImageUrl: controller.themeItem.energeticImage,
);
}),
WatchThemeHeader(
themeImageUrl: controller.themeItem.energeticImage,
),
const SizedBox(height: 26),
StatusPreviewCard(themeItem: controller.themeItem),
const SizedBox(height: 12),
... ...