zoukankan      html  css  js  c++  java
  • [Flutter] Creating, Importing & Using Dynamic Widgets from Other Files in a Flutter Application

    In this lesson we’ll learn how to import widgets we’ve created in other files & use them in our project. We'll also look at how to create dynamic properties in our widgets in order to make them reusable across our application.

    We have the CLI generate code:

    import 'package:flutter/material.dart';
    
    void main() => runApp(MyApp());
    
    class MyApp extends StatelessWidget {
      // This widget is the root of your application.
      @override
      Widget build(BuildContext context) {
        return MaterialApp(
          title: 'Flutter Demo',
          theme: ThemeData(
            // This is the theme of your application.
            //
            // Try running your application with "flutter run". You'll see the
            // application has a blue toolbar. Then, without quitting the app, try
            // changing the primarySwatch below to Colors.green and then invoke
            // "hot reload" (press "r" in the console where you ran "flutter run",
            // or simply save your changes to "hot reload" in a Flutter IDE).
            // Notice that the counter didn't reset back to zero; the application
            // is not restarted.
            brightness: Brightness.dark,
            primaryTextTheme: TextTheme(
              title: TextStyle(
                color: Colors.pinkAccent
              )
            ),
            primarySwatch: Colors.deepPurple,
            ),
          home: Scaffold(
            body: Center(
              child: Column(
                mainAxisAlignment: MainAxisAlignment.center,
                children: <Widget>[
                  Container(
                     300,
                    height: 300,
                    alignment: Alignment.center,
                    decoration: BoxDecoration(
                      color: Colors.black,
                      borderRadius: BorderRadius.circular(500)
                    ),
                    child: Text(
                      "Hello Flutter",
                      style: TextStyle(
                        color: Colors.red,
                        fontWeight: FontWeight.w500,
                        fontSize: 22.0
                      )
                    )
                  )
                ],
              )
            )
          ),
        );
      }
    }

    We want to replace the highlighted part with reusable Widget.

    import 'package:flutter/material.dart';
    
    class Greeting extends StatelessWidget {
      // To get passed in arg
      Greeting({
        @required this.greeting,
        this.color = Colors.green
      });
      // need to create a variable to hold greeting
      final String greeting;
      final Color color;
      @override
      Widget build(BuildContext context) {
        return Text(
          this.greeting,
          style: TextStyle(
            color: this.color,
            fontSize: 32
          )
        );
      }
    }

    Use it:

    import 'package:flutter/material.dart';
    import 'package:my_flutter_app/Greeting.dart';
    
    void main() => runApp(MyApp());
    
    class MyApp extends StatelessWidget {
      // This widget is the root of your application.
      @override
      Widget build(BuildContext context) {
        return MaterialApp(
          title: 'Flutter Demo',
          theme: ThemeData(
            // This is the theme of your application.
            //
            // Try running your application with "flutter run". You'll see the
            // application has a blue toolbar. Then, without quitting the app, try
            // changing the primarySwatch below to Colors.green and then invoke
            // "hot reload" (press "r" in the console where you ran "flutter run",
            // or simply save your changes to "hot reload" in a Flutter IDE).
            // Notice that the counter didn't reset back to zero; the application
            // is not restarted.
            brightness: Brightness.dark,
            primaryTextTheme: TextTheme(
              title: TextStyle(
                color: Colors.pinkAccent
              )
            ),
            primarySwatch: Colors.deepPurple,
            ),
          home: Scaffold(
            body: Center(
              child: Column(
                mainAxisAlignment: MainAxisAlignment.center,
                children: <Widget>[
                  Container(
                     300,
                    height: 300,
                    alignment: Alignment.center,
                    decoration: BoxDecoration(
                      color: Colors.black,
                      borderRadius: BorderRadius.circular(500)
                    ),
                    child: Greeting(greeting: "Hey you!", color: Colors.blue)
                  )
                ],
              )
            )
          ),
        );
      }
    }
  • 相关阅读:
    android异步更新UI的方法
    android中不同acitity之间进行数据传递(或者数据保存)
    android post数据到服务器端工具类(包括postjson字符串、键值对)
    android GestureDetector
    android实现圆角矩形
    android调用图库获取图片显示在img中
    (转)Http上传 vs Ftp上传
    (转)[VSTS] 让ADO.NET Entity Framework支持Oracle数据库
    (转)网站设计常用技巧收集
    (转)有了jQuery.Jcrop,选取美女的哪个部位你说了算
  • 原文地址:https://www.cnblogs.com/Answer1215/p/10299612.html
Copyright © 2011-2022 走看看