[Flutter]SQLite
의존성 추가 데이터 모델 정의 데이터베이스 열기 테이블 생성 CRUD 리스트 만들기 의존성 추가 pubspec.yaml 에 들어가서, dependencies에 아래 내용 추가 dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. cupertino_icons: ^1.0.2 #GetX get: ^4.6.1 #sqlite 추가 sqflite: path: 데이터 모델 정의 class Post { final int id; final String title; final String su..
2022.03.07