Files
2019-02-19 11:53:15 +08:00

32 lines
935 B
Dart
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/// @Author: 一凨
/// @Date: 2018-12-27 16:25:25
/// @Last Modified by: 一凨
/// @Last Modified time: 2018-12-27 16:25:25
// !!! 代码示例并非Demo
// import 'package:flutter/material.dart';
// class MaterialApp extends StatelessWidget {
// @override
// Widget build(BuildContext context) {
// return MaterialApp(
// title: 'title',
// theme: ThemeData(
// primaryColor: Color(ThemeColor),
// backgroundColor: Color(0xFFEFEFEF),
// accentColor: Color(0xFF888888),
// textTheme: TextTheme(
// //设置Material的默认字体样式
// body1: TextStyle(color: Color(0xFF888888), fontSize: 16.0),
// ),
// iconTheme: IconThemeData(
// color: Color(ThemeColor),
// size: 35.0,
// ),
// ),
// home: MyHomePage(),
// onGenerateRoute: Application.router.generator,
// );
// }
// }