前提・実現したいこと
Flutterでモバイルアプリの実装をしています。
SQLで以下ソースコード内3つのTextFieldに値を適宜保存したいです。
検索エンジンで調べた結果、sqfliteと言うパッケージを使用するのが一番メジャーと言うところまでは分かったのですが、3つのTextFieldに値を適宜保存する方法がわかりません。
DBのopen、closeのタイミング等が説明されているページを見つけられずにいます。
参考になるページや知見をご存知でしたらご教示頂きたいです。
該当のソースコード
sample.dart
1import 'package:flutter/material.dart'; 2import 'package:sqflite/sqflite.dart'; 3import 'dart:async'; 4 5void main() => runApp(MyApp()); 6 7class MyApp extends StatelessWidget { 8 @override 9 Widget build(BuildContext context) { 10 return MaterialApp( 11 title: 'sample', 12 theme: ThemeData( 13 ), 14 home: AppMain(title: 'sample'), 15 ); 16 } 17} 18 19class AppMain extends StatefulWidget{ 20 21 AppMain({Key key, this.title}) : super(key: key); 22 final String title; 23 24 @override 25 _AppMainState createState() => _AppMainState(); 26} 27 28class _AppMainState extends State<AppMain> { 29 30 Future _showErrorSnackBar() async { 31 Scaffold.of(context).showSnackBar( 32 SnackBar( 33 content: Text('Oops... the URL couldn\'t be opened!'), 34 ), 35 ); 36 } 37 @override 38 Widget build(BuildContext context) { 39 return Scaffold( 40 body: SingleChildScrollView( 41 child: Column( 42 children: <Widget>[ 43 Text(''), 44 Text(''), 45 Text('tlmemo'), 46 Text(''), 47 //ピンク色の部分 48 TextField( 49 minLines: 3, 50 maxLines: 3, 51 maxLength: 150, 52 decoration: InputDecoration( 53 fillColor: Colors.pink[200], filled: true, 54 border: OutlineInputBorder(), 55 hintText: '緊急/Emergency', 56 ) 57 ), 58 //黄色の部分 59 TextField( 60 minLines: 5, 61 maxLines: 5, 62 maxLength: 250, 63 decoration: InputDecoration( 64 fillColor: Colors.yellow[300], filled: true, 65 border: OutlineInputBorder(), 66 hintText: '重要/Important', 67 ) 68 ), 69 //緑色の部分 70 TextField( 71 minLines: 7, 72 maxLines: 7, 73 maxLength: 350, 74 decoration: InputDecoration( 75 fillColor: Colors.green[300], filled: true, 76 border: OutlineInputBorder(), 77 hintText: 'その他/Other', 78 ) 79 ), 80 Text(''), 81 Text(''), 82 Link( 83 child: Text('SAMPLE'), 84 url: 'https://google.com/', 85 onError: _showErrorSnackBar, 86 ) 87 88 ], 89 ), 90 ) 91 ); 92 } 93}
試したこと
検索エンジンの検索(日本語、英語)
補足情報(FW/ツールのバージョンなど)
OS:Mac
OSのバージョン:Cataline10.15.2
Flutter:1.9.1
Dart:2.5.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/10 22:53