일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- signout
- multiprovider
- changenotifierprovider
- user
- snackbar
- changenotifier
- Navigator
- reference
- Snapshot
- Swift
- borderRadius
- platformexception
- setstate
- provider
- switch
- enum
- divider
- permission
- Stream
- runTransaction
- ListView.builder
- transform
- Firebase
- Camera
- swift 문법
- globalkey
- datetime
- consumer
- 문법
- controller
- Today
- Total
목록ListView.builder (2)
코딩하는 제리

소스코드 및 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..

소스코드 및 pubspec.yaml // components/filled_outline_button.dart import 'package:flutter/material.dart'; import '../constants.dart'; class FillOutlineButton extends StatelessWidget { const FillOutlineButton({ Key key, this.isFilled = true, @required this.press, @required this.text, }) : super(key: key); final bool isFilled; final VoidCallback press; final String text; @override Widget build(BuildCon..