Skip to content

Commit

Permalink
Merge pull request #16 from changhwan77/feature
Browse files Browse the repository at this point in the history
๐Ÿ› ๋ฐฐํฌ๋ฅผ ์œ„ํ•œ 3์ฐจ ๋ ˆ์ด์•„์›ƒ ๋ฒ„๊ทธ ์ˆ˜์ •
  • Loading branch information
changhwan77 authored Feb 29, 2024
2 parents f876df8 + d6a42f6 commit c9258e1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class _TuTiCardMobileState extends ConsumerState<TuTiCardMobile> {
(context, index) {
final member = _allMembers[index];
return Container(
margin: EdgeInsets.symmetric(vertical: 20.w, horizontal: 8.w),
margin: EdgeInsets.all(8.w),
decoration: ShapeDecoration(
color: Colors.white,
shape: RoundedRectangleBorder(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class _TuTiHeaderMobileState extends ConsumerState<TuTiHeaderMobile> {
token.isEmpty) {
return TuTiButton(
padding: EdgeInsets.symmetric(
vertical: 7.5.h, horizontal: 18.w),
vertical: 7.5.h, horizontal: 25.w),
fontSize: 10.sp,
title: '๋กœ๊ทธ์ธ',
onPressed: () => _showLoginDialog(context),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LoginIntroDialog extends StatelessWidget {
Widget build(BuildContext context) {
return Dialog(
child: Container(
constraints: BoxConstraints(maxWidth: 350.w, maxHeight: 500.h),
constraints: BoxConstraints(maxWidth: 350.w, maxHeight: 530.h),
padding: EdgeInsets.fromLTRB(40.w, 30.h, 40.w, 30.h),
decoration: BoxDecoration(
color: Colors.white,
Expand Down Expand Up @@ -72,17 +72,17 @@ Widget loginIntroButtonCollection(BuildContext context) {
children: [
loginButtonTemplete(context,
foregroundText: '๋กœ๊ทธ์ธํ•˜๊ธฐ', routePath: '/login'),
Gaps.h8,
Gaps.h4,
loginButtonTemplete(context,
foregroundText: 'ํšŒ์›๊ฐ€์ž…ํ•˜๊ธฐ', routePath: '/join'),
Gaps.h8,
Gaps.h4,
socialLoginButton(
context,
foregroundText: '์นด์นด์˜ค ๋กœ๊ทธ์ธํ•˜๊ธฐ',
imagePath: 'assets/images/kakao.png',
backGroundColor: ColorConstants.kakaoColor,
),
Gaps.h8,
Gaps.h4,
socialLoginButton(context,
foregroundText: '๋„ค์ด๋ฒ„ ๋กœ๊ทธ์ธํ•˜๊ธฐ',
imagePath: 'assets/images/naver.png',
Expand Down

0 comments on commit c9258e1

Please sign in to comment.