| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Flutter コードサンプル」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
111行目: 111行目:
  
 
[[File:Flutter_simple_state.png]]
 
[[File:Flutter_simple_state.png]]
 +
 +
import 'package:flutter/material.dart';
 +
 +
void main() => runApp(MyApp());
 +
 +
class MyApp extends StatelessWidget {
 +
  final message = "Initial Message.";
 +
  @override
 +
  Widget build(BuildContext context) {
 +
    return new MaterialApp(
 +
      title: 'Flutter Sample',
 +
      home: MyPage(message:this.message),
 +
    );
 +
  }
 +
}
 +
 +
class MyPageState extends State<MyPage>{
 +
  String time;
 +
 +
  @override
 +
  void initState() {
 +
    super.initState();
 +
    this.time = "Tap Floating Action Button";
 +
  }
 +
 +
  void showTime(){
 +
    setState(() {
 +
      this.time = DateTime.now().toString();
 +
    });
 +
  }
 +
 +
  @override
 +
  Widget build(BuildContext context) {
 +
    return Scaffold(
 +
      appBar: AppBar(
 +
        title: Text('Flutter State Sample'),
 +
      ),
 +
      body: Text(
 +
        this.time,
 +
        style: TextStyle(fontSize: 32.0),
 +
      ),
 +
      floatingActionButton: FloatingActionButton(
 +
        onPressed: showTime,
 +
        child: Icon(Icons.timer),
 +
      ),
 +
    );
 +
  }
 +
}
 +
 +
class MyPage extends StatefulWidget {
 +
  final String message;
 +
  MyPage({this.message}):super() {}
 +
  @override
 +
  State<StatefulWidget> createState() => new MyPageState();
 +
}
 +
[[File:Flutter_simple_state_action.png]]

2020年3月15日 (日) 09:52時点における版

Flutter コードサンプル

Flutter|Dart|

シンプルな画面

ウィジェット

  • Flutterでは画面表示はウィジェットという部品によって作成される。
  • ウィジェットを入れ子にすることで構築し、ウィジェットツリーと呼ぶ。

StatelessWidgetとStatefulWidget

  • runAppの引数に指定されているのは、MyAppクラスのインスタンス
  • MyAppは、StatelessWidgetのサブクラス
  • StatelessWidgetはステート(状態)を持たない
  • StatefulWidgetはステート(状態)を持つ
  • ウィジェットはいずれかを継承して作成する
  • MaterialAppというマテリアルデザインを管理するウィジェットクラスを、buildで返すことでマテリアルデザインアプリになる
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5. class MyApp extends StatelessWidget {
  6. @override
  7. Widget build(BuildContext context) {
  8. return new MaterialApp(
  9. title: 'Flutter Sample',
  10. home: Text(
  11. 'Hello, Flutter!!',
  12. style: TextStyle(fontSize: 32.0),
  13. ),
  14. );
  15. }
  16. }

Flutter simple.png

MaterialAppクラス

  • 引数に様々な設定情報を指定することが出来る

ScaffoldとAppBar

  • アプリの基本デザインを生成

Scaffold

  • マテリアルデザインの基本レイアウト、デザインが組み込まれていてUIの土台となる

AppBar

  • アプリ上部に表示されるアプリケーションバー
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5. class MyApp extends StatelessWidget {
  6. @override
  7. Widget build(BuildContext context) {
  8. return new MaterialApp(
  9. title: 'Flutter Sample',
  10. home: Scaffold(
  11. appBar: AppBar(
  12. title: Text('Flutter Sample'),
  13. ),
  14. body: Text(
  15. 'Hello, Flutter!!',
  16. style: TextStyle(fontSize: 32.0),
  17. ),
  18. ),
  19. );
  20. }
  21. }

Flutter simple scaffold.png

状態を管理

  • StatefulWIdgetはStateクラスとして状態を扱う

StatefulWidgetとState

  • StatefulWidgetはcreateStateを実装しStateを生成する必要がある。
  • Stateクラスを継承して状態を管理する。この時型パラメータにウィジェットを指定する。
  • Stateクラスのbuildでウィジェットを生成する。buildは常に呼び出される。
  • StatefulWidgetは状態が変わるたびに、buildで新たな状態を生成し画面表示を更新する。
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5. class MyApp extends StatelessWidget {
  6. final message = "Initial Message.";
  7. @override
  8. Widget build(BuildContext context) {
  9. return new MaterialApp(
  10. title: 'Flutter Sample',
  11. home: MyPage(message:this.message),
  12. );
  13. }
  14. }
  15.  
  16. class MyPageState extends State<MyPage>{
  17. @override
  18. Widget build(BuildContext context) {
  19. return Scaffold(
  20. appBar: AppBar(
  21. title: Text('Flutter State Sample'),
  22. ),
  23. body: Text(
  24. widget.message,
  25. style: TextStyle(fontSize: 32.0),
  26. ),
  27. );
  28. }
  29. }
  30.  
  31. class MyPage extends StatefulWidget {
  32. final String message;
  33. MyPage({this.message}):super() {}
  34. @override
  35. State<StatefulWidget> createState() => new MyPageState();
  36. }

Flutter simple state.png

  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5. class MyApp extends StatelessWidget {
  6. final message = "Initial Message.";
  7. @override
  8. Widget build(BuildContext context) {
  9. return new MaterialApp(
  10. title: 'Flutter Sample',
  11. home: MyPage(message:this.message),
  12. );
  13. }
  14. }
  15.  
  16. class MyPageState extends State<MyPage>{
  17. String time;
  18.  
  19. @override
  20. void initState() {
  21. super.initState();
  22. this.time = "Tap Floating Action Button";
  23. }
  24.  
  25. void showTime(){
  26. setState(() {
  27. this.time = DateTime.now().toString();
  28. });
  29. }
  30.  
  31. @override
  32. Widget build(BuildContext context) {
  33. return Scaffold(
  34. appBar: AppBar(
  35. title: Text('Flutter State Sample'),
  36. ),
  37. body: Text(
  38. this.time,
  39. style: TextStyle(fontSize: 32.0),
  40. ),
  41. floatingActionButton: FloatingActionButton(
  42. onPressed: showTime,
  43. child: Icon(Icons.timer),
  44. ),
  45. );
  46. }
  47. }
  48.  
  49. class MyPage extends StatefulWidget {
  50. final String message;
  51. MyPage({this.message}):super() {}
  52. @override
  53. State<StatefulWidget> createState() => new MyPageState();
  54. }

Flutter simple state action.png