App 119

[ FLUTTER ] ScrollToTop 구현 예제

목차 프로젝트 생성 및 리스트뷰 생성 애니메이션 구현 스크롤 이동 (완성) 1. 프로젝트 생성 및 리스트뷰 생성 * 소스코드 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( title: 'Example', debugShowCheckedModeBanner: false, theme: ThemeData(primarySwatch: Colors.blue), ho..

App/Flutter 거북 2022.02.11

[ FLUTTER ] launcher icon plugin

https://pub.dev/packages/flutter_launcher_icons flutter_launcher_icons | Dart Package A package which simplifies the task of updating your Flutter app's launcher icon. pub.dev 1. 플러그인 설치 flutter pub add flutter_launcher_icons 2. 설치 후 dependencies 에 있는 flutter_launcher_icons -> dev_dependencies 변경 후 flutter_icons 경로 세팅 dev_dependencies: flutter_launcher_icons: ^0.9.0 flutter_icons: android: "laun..

App/Flutter 최진훈 2022.02.03