-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path220409.dart
More file actions
61 lines (55 loc) · 1.8 KB
/
220409.dart
File metadata and controls
61 lines (55 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {//위젯으로 짜집 기 하는형식으로 이루어져있음
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
backgroundColor: Colors.black,
title: SizedBox(
child: Row(
children: const [Text("금호동 3가 ",style: TextStyle(color: Colors.white)),Icon(Icons.arrow_downward)],
)
)
),
body:Container(
padding: EdgeInsets.all(10),
height: 150,
child:Row(
children: [
Flexible(child: Image.asset("img/iu.jpg"),flex: 3),
Flexible(child: Container(
padding: EdgeInsets.all(10),
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text("카메라"),
Text("위치어디"),
Text("7000원"),
Row(
mainAxisAlignment: MainAxisAlignment.end,
children: const [Icon(Icons.favorite_border,size:20),Text("4")],
)
],
),
), flex: 7)],
)
),
bottomNavigationBar: BottomAppBar(
child: SizedBox(
height: 70,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly ,
children: const [Icon(Icons.phone),Icon(Icons.message),Icon(Icons.contact_page)],
),
)
),
)
);
}
}