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 |
Tags
- sqlite
- Snackbar
- HTTP
- ListView.builder
- Image.network
- InkWell
- navigator
- Networking
- Flutter 예제
- Row Widget
- Flutter Example
- CrossAxisAlignment
- Flutter 강좌
- WillPopScope
- Column Widget
- ListTile
- Load Image
- MainAxisAlignment
- Flutter 앱 배포
- Row
- Cached Image
- flutter
- Scaffold
- 반석천
- listview
- Flutter Tutorial
- node.js
- Hello World
- FutureBuilder
- AppBar
Archives
- Today
- Total
꿈꾸는 시스템 디자이너
Flutter Example - File Read & Write | path_provider plugin 본문
Tutorial/Flutter with App
Flutter Example - File Read & Write | path_provider plugin
독행소년 2019. 10. 8. 15:31* About PlugIn
https://pub.dev/packages/path_provider
1. Add this to pubspec.yaml file
dependencies:
path_provider: ^1.3.0
2. Source Code
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:path_provider/path_provider.dart';
FileReadWriteDemoState pageState;
class FileReadWriteDemo extends StatefulWidget {
@override
FileReadWriteDemoState createState() {
pageState = FileReadWriteDemoState();
return pageState;
}
}
class FileReadWriteDemoState extends State<FileReadWriteDemo> {
String appDocPath;
String filePath;
TextEditingController wCon = TextEditingController();
TextEditingController rCon = TextEditingController();
@override
void initState() {
super.initState();
prepareDirPath();
}
void prepareDirPath() async {
Directory appDocDir = await getApplicationDocumentsDirectory();
Stream<FileSystemEntity> files = appDocDir.list();
files.listen((data) {
print("Data: " + data.toString());
});
setState(() {
appDocPath = appDocDir.path;
filePath = "$appDocPath/text.txt";
});
}
Future<File> getFileRef() async {
return File(filePath);
}
writeFile() async {
File file = await getFileRef();
file.writeAsString(wCon.text);
wCon.clear();
}
readFile() async {
File file = await getFileRef();
String text = await file.readAsString();
rCon.text = text;
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("File I/O"),
actions: <Widget>[
IconButton(
icon: Icon(Icons.refresh),
onPressed: () {
prepareDirPath();
},
)
],
),
body: ListView(
children: <Widget>[showPathInfo(), writeFileArea(), readFileArea()],
),
);
}
Widget showPathInfo() {
return Container(
padding: const EdgeInsets.only(bottom: 20),
child: Column(
children: <Widget>[
ListTile(
title: Text("Documents directory's path"),
subtitle: (appDocPath != null) ? Text(appDocPath) : null,
),
ListTile(
title: Text("File name & path"),
subtitle: (filePath != null) ? Text(filePath) : null,
)
],
),
);
}
writeFileArea() {
return Container(
margin: const EdgeInsets.symmetric(horizontal: 10),
child: Column(
children: <Widget>[
Container(
child: Text(
"* Write File (text.txt)",
style: TextStyle(fontWeight: FontWeight.bold),
),
alignment: Alignment(-1, 0),
),
Divider(color: Colors.grey),
TextField(
controller: wCon,
maxLines: 5,
decoration: InputDecoration(
hintText: "Insert text want to write to file",
filled: true,
fillColor: Color(0xFFDBEDFF),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(10.0)),
borderSide: BorderSide(color: Colors.grey),
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(10.0)),
borderSide: BorderSide(color: Colors.grey),
),
),
),
Padding(
padding: const EdgeInsets.only(top: 10),
child: SizedBox(
height: 30,
child: RaisedButton(
color: Colors.orangeAccent,
textColor: Colors.white,
child: Text("Write"),
onPressed: () {
writeFile();
},
),
),
)
],
),
);
}
readFileArea() {
return Container(
margin: const EdgeInsets.symmetric(horizontal: 10),
padding: const EdgeInsets.only(top: 50),
child: Column(
children: <Widget>[
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Container(
child: Text(
"* Read File (text.txt)",
style: TextStyle(fontWeight: FontWeight.bold),
),
alignment: Alignment(-1, 0),
),
SizedBox(
height: 30,
child: RaisedButton(
color: Colors.orangeAccent,
textColor: Colors.white,
child: Text("Read"),
onPressed: () {
readFile();
},
),
)
],
),
Divider(color: Colors.grey),
TextField(
controller: rCon,
maxLines: 5,
readOnly: true,
decoration: InputDecoration(
filled: true,
fillColor: Color(0xFFDBEDFF),
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(10.0)),
borderSide: BorderSide(color: Colors.grey),
),
focusedBorder: OutlineInputBorder(
borderRadius: BorderRadius.all(Radius.circular(10.0)),
borderSide: BorderSide(color: Colors.grey),
),
),
),
],
),
);
}
}
▶ Go to Table of Contents | 강의 목차로 이동
※ This example is also available in the Flutter Code Examples app. | 본 예제는 Flutter Code Examples 앱에서도 제공됩니다.
'Tutorial > Flutter with App' 카테고리의 다른 글
Flutter Example - Read Asset File (0) | 2019.10.13 |
---|---|
Privacy Policy for Flutter Code Examples | 개인정보처리방침 (0) | 2019.10.10 |
Flutter Example - Handle Image | Load Image from Gallery | image_picker plugin (0) | 2019.10.07 |
Flutter Example - Handle Image | Fit Image (0) | 2019.10.07 |
Flutter Example - Handle Image | Load Cached Image | cached_network_image plugin (0) | 2019.10.07 |
Comments