基础组件库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

18 行
388 B

  1. import 'package:flutter/material.dart';
  2. class SettingPage extends StatefulWidget {
  3. final Map<String, dynamic> data;
  4. const SettingPage(this.data, {Key key}) : super(key: key);
  5. @override
  6. _SettingPageState createState() => _SettingPageState();
  7. }
  8. class _SettingPageState extends State<SettingPage> {
  9. @override
  10. Widget build(BuildContext context) {
  11. return Scaffold();
  12. }
  13. }