From 0bb69eff8e06122d51c6f41ede5445391da15ffd Mon Sep 17 00:00:00 2001 From: HuiChan Seo <78739194+seochan99@users.noreply.github.com> Date: Wed, 14 Feb 2024 15:53:17 +0900 Subject: [PATCH] =?UTF-8?q?:sparkles:=20Feat:=20=EA=B8=80=EC=9E=90?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit feat: 글자수정 --- lib/views/auth/auth_card_widget.dart | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/views/auth/auth_card_widget.dart b/lib/views/auth/auth_card_widget.dart index b9686b4..34f6c08 100644 --- a/lib/views/auth/auth_card_widget.dart +++ b/lib/views/auth/auth_card_widget.dart @@ -1,3 +1,4 @@ +import 'package:earlips/utilities/style/color_styles.dart'; import 'package:flutter/material.dart'; import 'package:flutter_svg/svg.dart'; @@ -31,11 +32,15 @@ class AuthCard extends StatelessWidget { const SizedBox(width: 20), SvgPicture.asset( iconPath, - height: 30, + height: label == "구글 계정으로 로그인" ? 30 : 25, width: 30, ), const SizedBox(width: 20), - Text(label, style: const TextStyle(fontSize: 16)), + Text(label, + style: const TextStyle( + fontSize: 16, + fontWeight: FontWeight.w500, + color: ColorSystem.black)), ], ), ),