[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(
                width: 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(
                width: 300,
                height: 300,
                alignment: Alignment.center,
                decoration: BoxDecoration(
                  color: Colors.black,
                  borderRadius: BorderRadius.circular(500)
                ),
                child: Greeting(greeting: "Hey you!", color: Colors.blue)
              )
            ],
          )
        )
      ),
    );
  }
}
复制代码

 

posted @   Zhentiw  阅读(909)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2017-01-21 [TypeScript] Catch unsafe use of "this" in TypeScript functions
2015-01-21 [AngularJS] angular-schema-form -- 1
点击右上角即可分享
微信分享提示