Skip to content
This repository has been archived by the owner on Dec 7, 2024. It is now read-only.

Commit

Permalink
style: 주석 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
suu3 committed Jul 3, 2024
1 parent 1f4651b commit 4ba904f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/screens/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ class _MyHomeState extends ConsumerState<MyHome> {
child: Center(
child: ToggleButtons(
constraints: const BoxConstraints(
minHeight: 40.0, // 여기서 버튼의 최소 높이를 설정합니다.
minWidth: 80.0, // 버튼의 최소 너비를 설정할 수도 있습니다.
minHeight: 40.0,
minWidth: 80.0,
),
isSelected: filters
.map((filter) => filter.index == _selectedFilterIndex)
Expand Down
3 changes: 1 addition & 2 deletions lib/screens/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ class MyLogin extends StatelessWidget {
child: ElevatedButton(
style: ElevatedButton.styleFrom(
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(10), // 버튼의 반지름 값 조정
borderRadius: BorderRadius.circular(10),
),
padding: const EdgeInsets.all(20)),
onPressed: () {
Expand Down

0 comments on commit 4ba904f

Please sign in to comment.