본문 바로가기
반응형

Flutter63

Terminal에서 VSCODE 실행하기 Terminal에서 VSCODE 실행하기 예제를 연습하고 있는데. code . 을 입력하여, VSCODE를 실행 하지만, 입력을 하였지만, 실행되지 않았다. command not found: code 그래서 찾아보았다. VS CODE에 Shell Command를 실행 하면 된다. 이걸로 끝. 2021. 8. 14.
sourcetree connect gitea 동영상으로 대치 합니다. 2021. 8. 5.
[iOS & android App] WordNote 단어장 이번엔 단어장 어플을 만들었습니다. 승인은 하루만에 완료. 개발툴: VSCODE 개발언어: FLUTTER 백엔드: firebase [wordnote단어장 - apple store] [wordnote단어장 - play store] ‎Word단어장 ‎하지만 다르게 생각하면 사용자는 단어를 입력해야하는 시간을 그만큼 공부에 활용할 수 있습니다. 개발자에게 단어장 추가를 요구하세요. apps.apple.com 2021. 8. 2.
[flutter] Change Package Name & Bundle ID [flutter] Change Package Name & Bundle ID VSCODE 에서 flutter new create 를 하면 Package name 이 com.example.userappname example로 되어버린다. 이 경우 최종적으로 App을 출시 변경을 해야합니다. 아래의 내용으로 변경을 할 수있습니다. TERMINAL APP cd Root folder your project flutter pub global activate rename flutter pub global run rename --bundleId com.apple.iphone com.apple.iphone change user want name. End 2021. 7. 23.
[flutter] Default of googleFonts & dark theme & text color [flutter] Default of googleFonts & dark theme & text color 구글 폰트를 기본으로 지정하고, 테마를 dark 글자 색상은 흰색으로 지정하는 코드입니다. Widget build(BuildContext context) { return MaterialApp( title: "Word", theme: ThemeData( //위젯 전경색상 accentColor: Colors.red, primaryColor: Colors.pink, // 밝기는 어둡게 brightness: Brightness.dark, textTheme: GoogleFonts.juaTextTheme( Theme.of(context) .textTheme .apply(bodyColor: Colors.white.. 2021. 7. 10.
Uploading Image to Firebase Storage in Flutter (Android & iOS) Uploading Image to Firebase Storage in Flutter (Android & iOS) 사전에 firebase연결이 이루어져야한다. android, ios, 사용자가 테스팅 하고 싶은 디바이스로 pubspec.yaml에 팩키지 넣기 사용된 버전 image_picker: ^0.8.0+4 firebase_auth: ^1.4.1 firebase_core: ^1.3.0 cloud_firestore: ^2.2.2 firebase_storage: ^8.1.3 ios에서 사용하기위해서는 권한을 얻어야한다. Info.plist NSCameraUsageDescription Need to access your camera to capture a photo add and update profile .. 2021. 6. 26.
반응형