고원빈

[frontend] Inside Outside Page 구현

1 +{
2 + "dart.previewFlutterUiGuides": true
3 +}
...\ No newline at end of file ...\ No newline at end of file
...@@ -26,4 +26,8 @@ appbar 관련 디자인은 추후 구현 예정 ...@@ -26,4 +26,8 @@ appbar 관련 디자인은 추후 구현 예정
26 26
27 ### 2021-05-10 27 ### 2021-05-10
28 + Appbar 디자인 변경 및 Navgation Bar 구현 28 + Appbar 디자인 변경 및 Navgation Bar 구현
29 -+ Setting은 별도의 페이지로 구성
...\ No newline at end of file ...\ No newline at end of file
29 ++ Setting은 별도의 페이지로 구성
30 +
31 +### 2021-05-11
32 ++ Inside Information 화면 구성
33 ++ Outside Information 화면 구성
......
...@@ -173,7 +173,7 @@ class _SignInPageState extends State<SignInPage> { ...@@ -173,7 +173,7 @@ class _SignInPageState extends State<SignInPage> {
173 context, 173 context,
174 MaterialPageRoute( 174 MaterialPageRoute(
175 builder: (BuildContext context) => 175 builder: (BuildContext context) =>
176 - DashBoard(pageNumber: 0), 176 + DashBoard(pageNumber: 1),
177 )); 177 ));
178 } 178 }
179 } 179 }
......
...@@ -43,3 +43,16 @@ flutter: ...@@ -43,3 +43,16 @@ flutter:
43 - images/main_logo.png 43 - images/main_logo.png
44 - images/setting.png 44 - images/setting.png
45 45
46 +fonts:
47 + # - family: Raleway
48 + # fonts:
49 + # - asset: fonts/Raleway-Regular.ttf
50 + # - asset: fonts/Raleway-Italic.ttf
51 + # style: italic
52 +- family: NotoSansKR
53 + fonts:
54 + - asset: assets/fonts/NotoSansKR-Regular.otf
55 + - asset: assets/fonts/NotoSansKR-Bold.otf
56 + weight: 500
57 + - asset: assets/fonts/NotoSansKR-Black.otf
58 + weight: 700
...\ No newline at end of file ...\ No newline at end of file
......