A new Flutter project.
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
Date | Contents | Commit |
---|---|---|
20230709 | Project Setup, Splash, Home View, Upload Bar | Link |
20230712 | Project Structure Setting | Link |
MainPage, SafeArea, |
-
다른 기능 안필요하고 오직
Stateless
상속을 위한 imports는widgets.dart
를 import하면 된다.cupertino
,material
둘다 widgets을 품고 있지만 굳이 그 전체를 Import 할 필요가 없다.import 'dart:io'; import 'package:flutter/widgets.dart'; class ProjectRoute extends StatelessWidget { const ProjectRoute({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Container(); } }
-
분기칠 때 실행하고 있는게 앱이라면,
dart:html
을 절대 불러오면 안된다.import 'dart:io'; import 'package:blossom/project/route/cupertinoRoute.dart'; import 'package:blossom/project/route/materialRoute.dart'; import 'package:flutter/widgets.dart'; class ProjectRoute extends StatelessWidget { const ProjectRoute({Key? key}) : super(key: key); @override Widget build(BuildContext context) { if(Platform.isIOS) return ProjectCupertinoRoute(); return ProjectMaterialRoute(); } }
-
iOS, Android 분기치다 보면, 아예 똑같은 이벤트를 Cupertino, Material에서 수행해야 하는 경우가 많다. 그런데, 우리가 나누려는 것은 Lifecycle이 아니고, 오직
디자인
만을 나누려고 하는 것. 그래서 만들어놓은 것이Project/pages/xxxpages/xxxpage.dart
-
근데 위처럼 Stateful로 만들어서 다루려다 보니깐, provider 같은 것을 다루기가 귀찮다. 그래서, 각 페이지에 보통 한겹을 더 wrapping한다. 그게 바로 project/components/pages에 들어있는
xxxxPageComponent.dart
같은 파일이다.