Files
jianping.xwh 94bd8510c0 merge devlop
2019-01-08 19:18:12 +08:00

33 lines
946 B
Dart
Raw 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 new MaterialApp(
// title: 'title',
// theme: new 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: new MyHomePage(),
// onGenerateRoute: Application.router.generator,
// );
// }
// }