解決したい課題
TextFieldに文字を反映させたい。
現状
コード
import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( title: 'narururu', home: HomePage() ); } } class HomePage extends StatefulWidget { HomePageState createState() => HomePageState(); } class AlwaysDisabledFocusNode extends FocusNode { @override bool get hasFocus => false; } class HomePageState extends State<HomePage> { DateTime _date = new DateTime.now(); String Calendar; Future<Null> _selectDate(BuildContext context) async { final DateTime picked = await showDatePicker( context: context, initialDate: _date, firstDate: new DateTime(2000), lastDate: new DateTime(2100), ); if(picked != null) setState(() => _date = picked); } @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('テスト'), ), body: ListView( children: <Widget>[ ListTile( title: TextFormField( focusNode: AlwaysDisabledFocusNode(), onTap: () => _selectDate(context), decoration: InputDecoration( hintText: 'ここに日付を表示させたい', ), ), ), Row( children: [ Text(_date.year.toString() + '年',), Text(_date.month.toString() + '月',), Text(_date.day.toString() + '日',), ], ), ] ) ); } }
色々試していますが、どうしてもTextFieldに文字が反映されません。
解決策を教えていただけないでしょうか。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/07 16:29