当前位置: 首页 > 文档资料 > Flutter 英文文档 >

Test drive

优质
小牛编辑
125浏览
2023-12-01

This page describes how to create a new Flutter app from templates, run it, and experience “hot reload” after you make changes to the app.

Select your development tool of choice for writing, building, and running Flutter apps.

Create the app

  1. Select File > New Flutter Project.
  2. Select Flutter application as the project type, and press Next.
  3. Make sure that the Flutter SDK Path text field specifies the location of the SDK. Install the SDK if you haven’t yet done so.
  4. Enter a project name (for example, myapp), and press Next.
  5. Click Finish.
  6. Wait for Android Studio to install the SDK, and create the project.

The above commands create a Flutter project directory called myapp that contains a simple demo app that uses Material Components.

Run the app

  1. Locate the main Android Studio toolbar:
    Main IntelliJ toolbar
  2. In the target selector, select an Android device for running the app. If none are listed as available, select Tools> Android > AVD Manager and create one there. For details, see Managing AVDs.
  3. Click the run icon in the toolbar, or invoke the menu item Run > Run.

After the app build completes, you’ll see the starter app on your device.

Starter app on iOS
Starter app

Try hot reload

Flutter offers a fast development cycle with hot reload, the ability to reload the code of a live running app without restarting or losing app state. Make a change to app source, tell your IDE or command-line tool that you want to hot reload, and see the change in your simulator, emulator, or device.

  1. Open lib/main.dart.
  2. Change the string

    'You have pushed the button this many times'

    to

    'You have clicked the button this many times'
  3. Save your changes: invoke Save All, or click Hot Reload offline_bolt.

You’ll see the updated string in the running app almost immediately.

Create the app

  1. Invoke View > Command Palette.
  2. Type “flutter”, and select the Flutter: New Project.
  3. Enter a project name, such as myapp, and press Enter.
  4. Create or select the parent directory for the new project folder.
  5. Wait for project creation to complete and the main.dart file to appear.

The above commands create a Flutter project directory called myapp that contains a simple demo app that uses Material Components.

Run the app

  1. Locate the VS Code status bar (the blue bar at the bottom of the window):
    status bar
  2. Select a device from the Device Selector area. For details, see Quickly switching between Flutter devices.
    • If no device is available and you want to use a device simulator, click No Devices and launch a simulator.
    • To setup a real device, follow the device-specific instructions on the Install page for your OS.
  3. Invoke Debug > Start Debugging or press F5.
  4. Wait for the app to launch — progress is printed in the Debug Console view.

After the app build completes, you’ll see the starter app on your device.

Starter app on iOS
Starter app

Try hot reload

Flutter offers a fast development cycle with hot reload, the ability to reload the code of a live running app without restarting or losing app state. Make a change to app source, tell your IDE or command-line tool that you want to hot reload, and see the change in your simulator, emulator, or device.

  1. Open lib/main.dart.
  2. Change the string

    'You have pushed the button this many times'

    to

    'You have clicked the button this many times'
  3. Save your changes: invoke File > Save All, or click Hot Reload (the green circular arrow button).

You’ll see the updated string in the running app almost immediately.

Create the app

Use the flutter create command to create a new project:

$ flutter create myapp
$ cd myapp

The command creates a Flutter project directory called myapp that contains a simple demo app that uses Material Components.

Run the app

  1. Check that an Android device is running. If none are shown, follow the device-specific instructions on the Install page for your OS.

    $ flutter devices
    
  2. Run the app with the following command:

    $ flutter run
    

After the app build completes, you’ll see the starter app on your device.

Starter app on iOS
Starter app

Try hot reload

Flutter offers a fast development cycle with hot reload, the ability to reload the code of a live running app without restarting or losing app state. Make a change to app source, tell your IDE or command-line tool that you want to hot reload, and see the change in your simulator, emulator, or device.

  1. Open lib/main.dart.
  2. Change the string

    'You have pushed the button this many times'

    to

    'You have clicked the button this many times'
  3. Save your changes.
  4. Type r in the terminal window.

You’ll see the updated string in the running app almost immediately.

Next step

You’ll next learn some core Flutter concepts by creating a small app.