Skip to content

Commit

Permalink
M3-228 Feat : dart fix
Browse files Browse the repository at this point in the history
  • Loading branch information
koomin1227 committed Jul 25, 2024
1 parent 7a2bb87 commit 2dfb5dc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
4 changes: 3 additions & 1 deletion lib/controllers/bottom_sheet_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ class BottomSheetController extends GetxController {
}

void showIndividualModePixelInfo(
IndividualModePixelInfo pixelInfo, int pixelId) {
IndividualModePixelInfo pixelInfo,
int pixelId,
) {
mode.value = 2;
changeVar.value = changeVar.value ? false : true;
draggableController.animateTo(
Expand Down
11 changes: 6 additions & 5 deletions lib/screens/setting_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,12 @@ class SettingScreen extends StatelessWidget {
// },
// ),
SettingsItem(
title: '사용 가이드',
onTap: () async {
await launchUrl(Uri.parse(usageGuideUrl));
},
isLast: true),
title: '사용 가이드',
onTap: () async {
await launchUrl(Uri.parse(usageGuideUrl));
},
isLast: true,
),
// SettingsItem(title: '고객 문의 및 개선 요청', isLast: true),
],
),
Expand Down
10 changes: 5 additions & 5 deletions lib/screens/sign_up_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ class SignUpScreen extends StatelessWidget {
radius: 80.0,
backgroundImage: controller.profileImage.value != null
? FileImage(
File(controller.profileImage.value!.path))
as ImageProvider
File(controller.profileImage.value!.path),
) as ImageProvider
: AssetImage(
'assets/images/default_profile_image.png')
as ImageProvider,
'assets/images/default_profile_image.png',
) as ImageProvider,
),
Padding(
padding: const EdgeInsets.symmetric(
Expand Down Expand Up @@ -262,7 +262,7 @@ class SignUpScreen extends StatelessWidget {
),
),
);
})
}),
],
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/map/bottom_sheet/pixel_info_header.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class PixelInfoHeader extends StatelessWidget {
Text(
' px',
style: TextStyles.fs14w500cPrimary,
)
),
],
),
Align(
Expand Down

0 comments on commit 2dfb5dc

Please sign in to comment.