Skip to content

Commit

Permalink
🔀 :: 3.5.0 배포
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoochanhong authored Apr 26, 2024
2 parents a72db29 + 7c0d353 commit 6f32d54
Show file tree
Hide file tree
Showing 13 changed files with 665 additions and 759 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ if (flutterRoot == null) {

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '23'
flutterVersionCode = '24'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '3.4.1'
flutterVersionName = '3.5.0'
}

def keystoreProperties = new Properties()
Expand Down
6 changes: 3 additions & 3 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 3.4.1;
MARKETING_VERSION = 3.5.0;
PRODUCT_BUNDLE_IDENTIFIER = com.osj.lotura;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
Expand Down Expand Up @@ -516,7 +516,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 3.4.1;
MARKETING_VERSION = 3.5.0;
PRODUCT_BUNDLE_IDENTIFIER = com.osj.lotura;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
Expand Down Expand Up @@ -546,7 +546,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 3.4.1;
MARKETING_VERSION = 3.5.0;
PRODUCT_BUNDLE_IDENTIFIER = com.osj.lotura;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
Expand Down
76 changes: 41 additions & 35 deletions lib/presentation/apply_page/ui/view/apply_page.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart' as s;
import 'package:lotura/main.dart';
import 'package:lotura/presentation/apply_page/bloc/apply_bloc.dart';
import 'package:lotura/presentation/apply_page/bloc/apply_model.dart';
Expand All @@ -19,7 +19,7 @@ class ApplyPage extends StatelessWidget {
ApplyPage({super.key});

final TextStyle bigStyle = TextStyle(
fontSize: 40.0.sp,
fontSize: 30.0.sp,
color: LoturaColors.black,
fontWeight: FontWeight.bold,
);
Expand All @@ -36,24 +36,26 @@ class ApplyPage extends StatelessWidget {
appBar: AppBar(
backgroundColor: LoturaColors.gray100,
elevation: 0.0,
leadingWidth: 200.0.w,
leading: Row(
children: [
SizedBox(width: 24.0.w),
Image.asset(
"assets/applogo.jpeg",
width: 24.0.w,
height: 24.0.h,
),
SizedBox(width: 8.0.w),
Text(
"OSJ",
style: TextStyle(
fontSize: 20.0.sp,
color: LoturaColors.primary700,
fontWeight: FontWeight.bold),
),
],
leadingWidth: MediaQuery.of(context).size.width,
title: Padding(
padding: EdgeInsets.only(left: 10.0.r),
child: Row(
children: [
Image.asset(
"assets/applogo.jpeg",
width: 24.0.w,
height: 24.0.h,
),
SizedBox(width: 8.0.w),
Text(
"OSJ",
style: TextStyle(
fontSize: 20.0.sp,
color: LoturaColors.primary700,
fontWeight: FontWeight.bold),
),
],
),
),
actions: [
IconButton(
Expand Down Expand Up @@ -105,16 +107,17 @@ class ApplyPage extends StatelessWidget {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text("알림 설정한", style: bigStyle),
Text("세탁기와 건조기", style: bigStyle),
SizedBox(height: 24.0.h),
Text("알림을 설정하여 세탁기와 건조기를", style: smallStyle),
SizedBox(height: 5.0.h),
Text("누구보다 빠르게 사용해보세요.", style: smallStyle),
],
FittedBox(
fit: BoxFit.scaleDown,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text("알림 설정한\n세탁기와 건조기", style: bigStyle),
SizedBox(height: 24.0.h),
Text("알림을 설정하여 세탁기와 건조기를\n누구보다 빠르게 사용해보세요.",
style: smallStyle),
],
),
),
SizedBox(height: 20.0.h),
Expanded(
Expand Down Expand Up @@ -173,13 +176,16 @@ class ApplyPage extends StatelessWidget {
.applyList[index * 2 + 1]
.deviceType,
state: CurrentState.working)
: SizedBox(
width: 185.0.w,
height: 256.0.h,
),
: const MachineCard(
//리팩토링 꼭 하기
deviceId: -1,
isEnableNotification: false,
isWoman: true,
deviceType: DeviceType.dry,
state: CurrentState.working)
],
),
SizedBox(height: 10.0.h),
SizedBox(height: 10.0.r),
],
);
},
Expand Down
Loading

0 comments on commit 6f32d54

Please sign in to comment.