Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- Swift
- changenotifier
- reference
- Firebase
- 문법
- provider
- runTransaction
- platformexception
- Snapshot
- snackbar
- ListView.builder
- Camera
- borderRadius
- enum
- signout
- changenotifierprovider
- transform
- swift 문법
- globalkey
- user
- Stream
- Navigator
- multiprovider
- permission
- controller
- datetime
- consumer
- setstate
- divider
- switch
Archives
- Today
- Total
목록removeWhere (1)
코딩하는 제리

소스코드 및 pubspec.yaml // lib/models/transaction.dart import 'package:flutter/foundation.dart'; class Transaction { final String id; final String title; final double amount; final DateTime date; Transaction({ @required this.id, @required this.title, @required this.amount, @required this.date, }); } // lib/main.dart import 'package:flutter/material.dart'; import './widgets/chart.dart'; import './wid..
Flutter/MiniProject
2021. 3. 26. 00:13