-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileStorage.dart
95 lines (82 loc) · 3.27 KB
/
FileStorage.dart
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import 'dart:convert';
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:implementations/main.dart';
import 'package:path_provider/path_provider.dart';
class FileStorage extends StatefulWidget {
@override State<StatefulWidget> createState() => new FileStorageState();
}
class FileStorageState extends State<FileStorage> {
TextEditingController _keyController = new TextEditingController();
TextEditingController _valueController = new TextEditingController();
File _jsonFile;
Directory _dir;
String _fileName = "myJsonFile.json";
bool _fileExists = false;
Map<String, String> fileContent;
@override void initState() {
super.initState();
getApplicationDocumentsDirectory().then((directory) {
_dir = directory;
_jsonFile = new File(_dir.path + '/' + _fileName);
_fileExists = _jsonFile.existsSync();
if (_fileExists) setState(() => fileContent = json.decode(_jsonFile.readAsStringSync()));
});
}
void _createFile(Map<String, String> content, Directory directory, String fileName) {
print('Creating file...');
File file = new File(directory.path + '/' + fileName);
file.createSync();
_fileExists = true;
file.writeAsStringSync(json.encode(content));
}
void writeToFile(String key, String value) {
print('Writing to the file');
Map<String, String> content = {key: value};
if (_fileExists) {
print('File Exists!');
Map<String, String> jsonFileContent = json.decode(_jsonFile.readAsStringSync());
jsonFileContent.addAll(content);
_jsonFile.writeAsStringSync(json.encode(jsonFileContent));
} else {
print('File does not exist!');
_createFile(content, _dir, _fileName);
}
setState(() => fileContent = json.decode(_jsonFile.readAsStringSync()));
}
@override Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(title: new Text('File Storage with JSON'),),
body: App.getWidget(
new SingleChildScrollView(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
App.getWidget(new Text('File Content', style: new TextStyle(fontWeight: FontWeight.bold),)),
App.getWidget(new Text(fileContent.toString(), textAlign: TextAlign.center,), const EdgeInsets.all(0.0)),
App.getWidget(new Text('Add to JSON file: ')),
_getTextField(_keyController, 'Key'),
_getTextField(_valueController, 'Value'),
App.getWidget(new RaisedButton(
child: new Text("Add 'Key - Value' Pair"),
onPressed: () => writeToFile(_keyController.text, _valueController.text),
)),
],
),
),
),
);
}
Widget _getTextField(TextEditingController controller, String hint) =>
App.getWidget(
new TextField(controller: controller, textAlign: TextAlign.center, decoration: _getDecoration(hint),),
const EdgeInsets.only(top: 10.0, bottom: 5.0)
);
InputDecoration _getDecoration(String hint) =>
new InputDecoration(hintText: hint, hintStyle: new TextStyle(fontStyle: FontStyle.italic));
@override void dispose() {
_keyController.dispose();
_valueController.dispose();
super.dispose();
}
}