|
|
(同じ利用者による、間の35版が非表示) |
行1: |
行1: |
− | ==body内に複数行textを表示==
| + | [[flutter/UI/Text]] |
− | body: Center(
| + | |
− | child: Column(
| + | |
− | mainAxisAlignment: MainAxisAlignment.center,
| + | |
− | children: <Widget>[
| + | |
− | Text(
| + | |
− | 'hello',
| + | |
− | ),
| + | |
− | Text(
| + | |
− | '$_counter',
| + | |
− | style: Theme.of(context).textTheme.display1,
| + | |
− | ),
| + | |
− | RaisedButton(
| + | |
− | child: Text('Back to MyPage 1'),
| + | |
− | onPressed: () {
| + | |
− | Navigator.pop(context);
| + | |
− | },
| + | |
− | ),
| + | |
− | ],
| + | |
− | ),
| + | |
− | ),
| + | |
| | | |
− | ==body内にボタンを表示==
| + | [[flutter/UI/Button]] |
− | body: Center(
| + | |
− | child: Column(
| + | |
− | mainAxisAlignment: MainAxisAlignment.center,
| + | |
− | children: <Widget>[
| + | |
− | Text(
| + | |
− | 'hello',
| + | |
− | ),
| + | |
− | RaisedButton(
| + | |
− | child: Text('button1'),
| + | |
− | onPressed: () {
| + | |
− | // ボタン処理
| + | |
− | },
| + | |
− | ),
| + | |
− | ],
| + | |
− | ),
| + | |
− | ),
| + | |
| | | |
− | ==画面右下にボタンを表示==
| + | [[flutter/UI/Container]] |
− | floatingActionButtonをScaffoldの項目に追加
| + | |
− | return Scaffold(
| + | [[flutter/UI/TextField]] |
− | appBar: AppBar(
| + | |
− | title: Text(widget.title),
| + | [[flutter/UI/ListView]] [dir] |
− | ),
| + | |
− | body: Center(
| + | [[flutter/UI/PageView]] |
− | child: Column(
| + | |
− | mainAxisAlignment: MainAxisAlignment.center,
| + | [[flutter/UI/ListTile]] |
− | children: <Widget>[
| + | |
− | Text(
| + | [[flutter/UI/SwitchListTile]] |
− | 'hello',
| + | |
− | ),
| + | [[flutter/UI/BottomNavigationBar]] |
− | ],
| + | |
− | ),
| + | [[flutter/UI/DropdownButton]] |
− | ),
| + | |
− | floatingActionButton: FloatingActionButton(
| + | [[flutter/UI/Scaffold]] |
− | onPressed: _incrementCounter,
| + | |
− | tooltip: 'Increment',
| + | [[flutter/UI/CircleAvatar]] |
− | child: Icon(Icons.add),
| + | |
− | ),
| + | [[flutter/UI/Draggable]] |
− | );
| + | |
| + | [[flutter/UI/Cupertino]] [dir] |
| + | |
| + | [[flutter/UI/余白]] |
| + | |
| + | [[flutter/UI/ダークモード]] |
| + | |
| + | [[flutter/UI/横縦並び・比率]] |
| + | |
| + | [[flutter/UI/別widget切出]] |
| + | |
| + | [[flutter/UI/その他]] |
2020年1月20日 (月) 23:14時点における最新版
flutter/UI/Text
flutter/UI/Button
flutter/UI/Container
flutter/UI/TextField
flutter/UI/ListView [dir]
flutter/UI/PageView
flutter/UI/ListTile
flutter/UI/SwitchListTile
flutter/UI/BottomNavigationBar
flutter/UI/DropdownButton
flutter/UI/Scaffold
flutter/UI/CircleAvatar
flutter/UI/Draggable
flutter/UI/Cupertino [dir]
flutter/UI/余白
flutter/UI/ダークモード
flutter/UI/横縦並び・比率
flutter/UI/別widget切出
flutter/UI/その他