您的位置:首页 > 游戏 > 手游 > 搜索引擎优化和关键词竞价广告的区别_搭建影视网站_百度应用市场下载安装_江苏做网站的公司有哪些

搜索引擎优化和关键词竞价广告的区别_搭建影视网站_百度应用市场下载安装_江苏做网站的公司有哪些

2024/11/15 8:13:26 来源:https://blog.csdn.net/waterHBO/article/details/143468950  浏览:    关键词:搜索引擎优化和关键词竞价广告的区别_搭建影视网站_百度应用市场下载安装_江苏做网站的公司有哪些
搜索引擎优化和关键词竞价广告的区别_搭建影视网站_百度应用市场下载安装_江苏做网站的公司有哪些

起因, 目的:

来源: 客户需求。 着急要,我随便写的,应付一下。

过程:

略,直接看代码,看注释。

代码 1 xxx
import 'package:flutter/material.dart';void main() {runApp(const MyApp());
}// #
class MyApp extends StatelessWidget {const MyApp({super.key});// This widget is the root of your application.@overrideWidget build(BuildContext context) {return MaterialApp(title: 'Flutter Demo',// 隐藏调试模式横幅debugShowCheckedModeBanner: false,theme: ThemeData(colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),useMaterial3: true,),home: TicTacToeHomePage(), // title: 'Flutter Demo Home Page');}
}// 这部分就是一个占位的。  是个初步版本。
// TicTacToeHomePage
// class TicTacToeHomePage extends StatelessWidget {
//   @override
//   Widget build(BuildContext context) {
//     return Scaffold(
//       appBar: AppBar(
//         title: Text('Tic Tac Toe'),
//       ),
//       body: Center(
//         child: Text('hey!!!'),
//       ),
//     );
//   }
// }class TicTacToeHomePage extends StatelessWidget {@overrideWidget build(BuildContext context) {return Scaffold(appBar: AppBar(title: Row(children: <Widget>[Image(image: AssetImage('assets/images/face.jpg'), // 替换为你的图片路径width: 30.0, // Image style),SizedBox(width: 10.0), // 间距Text('123456 someone@who',style: TextStyle(fontWeight: FontWeight.bold, fontSize: 20.0)), // Text style],),backgroundColor: Colors.blue, // AppBar style),// body: Center(//   child: Text('hey!!!'),// ),body: Center(child: Column(mainAxisAlignment: MainAxisAlignment.center,children: <Widget>[Text('Welcome to the game Tic Tac Toe',style: TextStyle(fontSize: 24.0,color: Colors.orange,fontWeight: FontWeight.bold)),// Welcome message with stylesSizedBox(height: 20.0),// 间距Image(image: AssetImage('assets/images/game_img.jpg'), // 替换为你的图片路径width: 300.0, // Image style),SizedBox(height: 20.0),// 间距ElevatedButton(style: ElevatedButton.styleFrom(backgroundColor: Colors.red, // 按钮背景颜色foregroundColor: Colors.white, // 按钮前景色padding: EdgeInsets.symmetric(vertical: 10.0, horizontal: 20.0), // 按钮内边距),child: Text('Start Game', style: TextStyle(fontSize: 18.0)),// Button text styleonPressed: () {print('Key pressed!');},),],),),);}
}

效果图

在这里插入图片描述

结论 + todo

  • 最近写的这个几个 flutter:
  • 前面2篇,是用 vscode 写的
  • 这次是用的是 andriod studio,环境配置差不多用了1个小时。
  • andriod studio 很久不用,各种更新。 其实,andriod studio 也挺好的。

老哥留步,支持一下。

请求支持

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com