Skip to content

Commit

Permalink
#8 Feat: home UI 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinyshin committed Nov 11, 2023
1 parent a352b17 commit 14a9d1e
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions unibond/lib/screens/home_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,43 @@ class HomeScreen extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("홈 화면"),
title: const Text("커뮤니티"),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.start,
children: [
const SizedBox(height: 16),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Container(
height: 120,
width: 170,
decoration: BoxDecoration(
border: Border.all(
width: 5,
),
borderRadius: BorderRadius.circular(30),
),
),
const SizedBox(width: 20),
Container(
height: 120,
width: 170,
decoration: BoxDecoration(
border: Border.all(
width: 5,
),
borderRadius: BorderRadius.circular(30),
),
),
],
),
),
const SizedBox(height: 16),
ElevatedButton(
onPressed: () {
Navigator.push(
Expand Down

0 comments on commit 14a9d1e

Please sign in to comment.