Flutter 从零开始 002 创建第一个flutter项目

打印 上一主题 下一主题

主题 931|帖子 931|积分 2793

1.创建并运行一个Flutter App工程

打开Android studio(简称AS)>File>New>New Flutter Project
选择一个模仿器,点击旁边的run 按钮

第一次编译项目时间比较长,耐心等待即可,运行完成 如下图

2.项目基本文件目录


Flutter项目主要分为Android,iOS,lib,pubspec.yaml这四个,其中lib下就是用来flutter开辟的,我们的dart文件就放在这里,pubspec.yaml文件就是flutter的构建管理工具,就和Android 的gradle 一样
  1. name: flutter001
  2. description: A new Flutter project.
  3. # The following line prevents the package from being accidentally published to
  4. # pub.dev using `flutter pub publish`. This is preferred for private packages.
  5. publish_to: 'none' # Remove this line if you wish to publish to pub.dev
  6. # The following defines the version and build number for your application.
  7. # A version number is three numbers separated by dots, like 1.2.43
  8. # followed by an optional build number separated by a +.
  9. # Both the version and the builder number may be overridden in flutter
  10. # build by specifying --build-name and --build-number, respectively.
  11. # In Android, build-name is used as versionName while build-number used as versionCode.
  12. # Read more about Android versioning at https://developer.android.com/studio/publish/versioning
  13. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
  14. # Read more about iOS versioning at
  15. # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
  16. version: 1.0.0+1
  17. environment:
  18.   sdk: ">=2.16.1 <3.0.0"
  19. # Dependencies specify other packages that your package needs in order to work.
  20. # To automatically upgrade your package dependencies to the latest versions
  21. # consider running `flutter pub upgrade --major-versions`. Alternatively,
  22. # dependencies can be manually updated by changing the version numbers below to
  23. # the latest version available on pub.dev. To see which dependencies have newer
  24. # versions available, run `flutter pub outdated`.
  25. dependencies:
  26.   flutter:
  27.     sdk: flutter
  28.   # The following adds the Cupertino Icons font to your application.
  29.   # Use with the CupertinoIcons class for iOS style icons.
  30.   cupertino_icons: ^1.0.2
  31. dev_dependencies:
  32.   flutter_test:
  33.     sdk: flutter
  34.   # The "flutter_lints" package below contains a set of recommended lints to
  35.   # encourage good coding practices. The lint set provided by the package is
  36.   # activated in the `analysis_options.yaml` file located at the root of your
  37.   # package. See that file for information about deactivating specific lint
  38.   # rules and activating additional ones.
  39.   flutter_lints: ^1.0.0
  40. # For information on the generic Dart part of this file, see the
  41. # following page: https://dart.dev/tools/pub/pubspec
  42. # The following section is specific to Flutter.
  43. flutter:
  44.   # The following line ensures that the Material Icons font is
  45.   # included with your application, so that you can use the icons in
  46.   # the material Icons class.
  47.   uses-material-design: true
  48.   # To add assets to your application, add an assets section, like this:
  49.   # assets:
  50.   #   - images/a_dot_burr.jpeg
  51.   #   - images/a_dot_ham.jpeg
  52.   # An image asset can refer to one or more resolution-specific "variants", see
  53.   # https://flutter.dev/assets-and-images/#resolution-aware.
  54.   # For details regarding adding assets from package dependencies, see
  55.   # https://flutter.dev/assets-and-images/#from-packages
  56.   # To add custom fonts to your application, add a fonts section here,
  57.   # in this "flutter" section. Each entry in this list should have a
  58.   # "family" key with the font family name, and a "fonts" key with a
  59.   # list giving the asset and other descriptors for the font. For
  60.   # example:
  61.   # fonts:
  62.   #   - family: Schyler
  63.   #     fonts:
  64.   #       - asset: fonts/Schyler-Regular.ttf
  65.   #       - asset: fonts/Schyler-Italic.ttf
  66.   #         style: italic
  67.   #   - family: Trajan Pro
  68.   #     fonts:
  69.   #       - asset: fonts/TrajanPro.ttf
  70.   #       - asset: fonts/TrajanPro_Bold.ttf
  71.   #         weight: 700
  72.   #
  73.   # For details regarding fonts from package dependencies,
  74.   # see https://flutter.dev/custom-fonts/#from-packages
复制代码
这内里就是对工程的配置,库的依赖,资源的依赖等
3. 项目简介

这是Flutter的入口函数,runApp启动的Widget
  1. void main() => runApp(MyApp());
复制代码
MyApp类代表 Flutter 应用,它继承了 StatelessWidget类,这也就意味着应用本身也是一个widget
Flutter 中,大多数东西都是 widget(后同“组件”或“部件”),包罗对齐(Align)、填充(Padding)、手势处理(GestureDetector)等,它们都是以 widget 的形式提供。
Flutter 在构建页面时,会调用组件的build方法,widget 的主要工作是提供一个 build() 方法来描述如何构建 UI 界面(通常是通过组合、拼装其它底子 widget )。
MaterialAppMaterial 库中提供的 Flutter APP 框架,通过它可以设置应用的名称、主题、语言、首页及路由列表等。MaterialApp也是一个 widget
homeFlutter 应用的首页,它也是一个 widget

MyHomePage 是应用的首页,它继承自StatefulWidget类,表示它是一个有状态的组件**(Statefulwidget)**。关于有状态组件和无状态组件,我在后面会和大家讲,现在只需要知道他是一个有状态组件就可以了。
Statefulwidget 可以拥有状态,这些状态在 widget 生命周期中是可以变的,而 Statelesswidget 是不可变的。
Stateful widget 至少由两个类构成:
一个StatefulWidget类。
一个 State类; StatefulWidget类本身是稳定的,但是State类中持有的状态在 widget 生命周期中可能会发生变化。
_MyHomePageState类是MyHomePage类对应的状态类。看到这里,读者可能已经发现:和MyApp 类不同, MyHomePage类中并没有build方法,取而代之的是,build方法被挪到了**_MyHomePageState**方法中。

State类

接下来,我们看看**_MyHomePageState**中都包含哪些东西:
该组件的状态。由于我们只需要维护一个点击次数计数器,所以界说一个**_counter**状态:
  1. int _counter = 0; //用于记录按钮点击的总次数
复制代码
_counter 为生存屏幕右下角带“+”号按钮点击次数的状态。
设置状态的自增函数。
  1.   void _incrementCounter() {
  2.     setState(() {
  3.       _counter++;
  4.     });
  5.   }
复制代码
当按钮点击时,会调用此函数,该函数的作用是先自增**_counter**,然后调用setState 方法。setState方法的作用是通知 Flutter 框架,有状态发生了改变,Flutter 框架收到通知后,会执行 build 方法来根据新的状态重新构建界面, Flutter 对此方法做了优化,使重新执行变的很快,所以你可以重新构建任何需要更新的东西,而无需分别去修改各个 widget
构建UI界面

构建UI界面的逻辑在 build 方法中,当MyHomePage第一次创建时,_MyHomePageState类会被创建,当初始化完成后,Flutter框架会调用 widgetbuild方法来构建 widget 树,最终将 widget 树渲染到装备屏幕上。所以,我们看看**_MyHomePageStatebuild**方法中都干了什么事:
  1. @override
  2.   Widget build(BuildContext context) {
  3.     return Scaffold(
  4.       appBar: AppBar(
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

涛声依旧在

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表