본문 바로가기

Flutter-플러터/클론코딩29

Flutter icon 설정하기 부가세 계산기 아이콘을 만들어 보았다. https://pub.dev/packages/flutter_launcher_icons/install flutter_launcher_icons | Dart Package A package which simplifies the task of updating your Flutter app's launcher icon. pub.dev 위 패키지를 이용했다. 순서는 다음과 같다. 1. 이미지 파일을 준비해서 assets 파일에 넣는다. 2.flutter_launcher_icons 패키지를 yaml 파일에 아래와 같이 넣는다.(칸을 잘 맞춘다) 3. terminal을 열어서 flutter pub run flutter_launcher_icons:main 명령어를 입력한다. 그럼.. 2023. 7. 13.
Provider Todo 클론 코딩 https://github.com/SouravBarman001/Flutter-Todo-App/tree/main GitHub - SouravBarman001/Flutter-Todo-App: Flutter Todo App Using Provider state manager Flutter Todo App Using Provider state manager. Contribute to SouravBarman001/Flutter-Todo-App development by creating an account on GitHub. github.com Msh체크박스를 배웠다. provider를 배웠다. 2023. 6. 27.
Getx todo 클론코딩 https://github.com/theindianinnovation/todo_app_getx GitHub - theindianinnovation/todo_app_getx: perform crud operations using getx and get storage perform crud operations using getx and get storage - GitHub - theindianinnovation/todo_app_getx: perform crud operations using getx and get storage github.com index 값의 변수를 만들어서 add , edit 페이지를 구분하게 했다. 아주 좋음 2023. 6. 6.
Getx todo https://github.com/koirpraw/flutter_crud_todo_getx/blob/main/lib/view/todo_home_page.dart GitHub - koirpraw/flutter_crud_todo_getx: todo app illustrating CRUD operations , using GetX todo app illustrating CRUD operations , using GetX - GitHub - koirpraw/flutter_crud_todo_getx: todo app illustrating CRUD operations , using GetX github.com Get x todo 기본 적인 기능이 담긴 코드입니다. 좋네요 :) 2023. 4. 1.
GetX Todo 어플 - 연습하기 굉장히 좋다 https://github.com/changjun595/flutter_simple_todo_getx GitHub - changjun595/flutter_simple_todo_getx Contribute to changjun595/flutter_simple_todo_getx development by creating an account on GitHub. github.com 위 코드를 클론코딩했다. 한국인 개발자가 Getx를 사용한 건 처음인데 굉장히 좋았다. 한국사람의 특성이 곳곳에 보이는.....코드랄까...? 이분꺼 깃허브 코드 보면서 따라 쳐야겠다 ㅎㅎㅎ 2023. 3. 30.
애니메이션 만들기 (35) 📱 Playing with Animations • Flutter Tutorial ♡ - YouTube 플러터로 애니메이션 기능 구현하기 1. 애니메이션을 컨트롤 할 컨트롤러, 그리고 얼마큼 움직일지 그 값을 담는변수 선언하기 late AnimationController _controller; late Animation _rotationAnimation; late Animation _radiusAnimation; 2. 움직임 관련 함수 만들기 @override void initState() { //3개의 컨트롤러가 필요하다 1. 움직임, 2. 얼마큼 움직이는지 3. 동그라미 _controller = AnimationController(vsync: this,duration: Duration(seco.. 2023. 3. 13.