AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
![](https://img.kancloud.cn/8d/c2/8dc25900d5ba24e2c85a45a3b6eaf7b5_972x1876.png) ```dart import 'package:flutter/material.dart'; void main() => runApp(Myapp()); class Myapp extends StatelessWidget{ @override Widget build(BuildContext context) { // TODO: implement build return MaterialApp( title: 'home', home: Scaffold( appBar: AppBar( title: Text('首页'), ), body: Home(), ), theme: ThemeData( primarySwatch:Colors.red // 设置app主题 ), ); } } class Home extends StatelessWidget{ @override Widget build(BuildContext context) { // TODO: implement build return Center( child: Text( '你好', style: TextStyle( fontSize: 40.0, color: Colors.red, backgroundColor: Colors.white ), textDirection: TextDirection.ltr, // 文本从做向右(默认) ), ); } } ```