跳到主內容

Flutter for SwiftUI Developers

學習如何在構建 Flutter 應用時應用 SwiftUI 開發人員的知識。

希望使用 Flutter 編寫移動應用的 SwiftUI 開發人員應查閱本指南。它解釋瞭如何將現有的 SwiftUI 知識應用於 Flutter。

Flutter 是一個用於構建跨平臺應用程式的框架,它使用 Dart 程式語言。要了解 Dart 程式設計與 Swift 程式設計之間的一些區別,請參閱 Learning Dart as a Swift DeveloperFlutter concurrency for Swift developers

您的 SwiftUI 知識和經驗在構建 Flutter 應用時非常有價值。

Flutter 在在 iOS 和 macOS 上執行時也會對應用行為進行一些調整。要了解如何操作,請參閱 Platform adaptations

本文件可以用作食譜,透過跳躍查詢與您的需求最相關的問題。本指南嵌入了示例程式碼。透過使用懸停或焦點時出現的“在 DartPad 中開啟”按鈕,您可以在 DartPad 上開啟並執行一些示例。

概述

#

作為介紹,請觀看以下影片。它概述了 Flutter 在 iOS 上的工作方式以及如何使用 Flutter 構建 iOS 應用。

在新的標籤頁上在 YouTube 上觀看:“Flutter for iOS developers”

Flutter 和 SwiftUI 程式碼描述了 UI 的外觀和工作方式。開發人員稱這種型別的程式碼為宣告式框架

檢視 vs. 部件

#

SwiftUI 將 UI 元件表示為檢視。您使用修飾符配置檢視。

swift
Text("Hello, World!") // <-- This is a View
  .padding(10)        // <-- This is a modifier of that View

Flutter 將 UI 元件表示為部件

檢視和部件都只存在到需要更改時。這些語言將此屬性稱為不可變性。SwiftUI 將 UI 元件屬性表示為 View 修飾符。相比之下,Flutter 使用部件表示 UI 元件及其屬性。

dart
Padding(                         // <-- This is a Widget
  padding: EdgeInsets.all(10.0), // <-- So is this
  child: Text("Hello, World!"),  // <-- This, too
)));

為了組合佈局,SwiftUI 和 Flutter 都會將 UI 元件巢狀在彼此內部。SwiftUI 巢狀檢視,而 Flutter 巢狀部件。

佈局過程

#

SwiftUI 使用以下過程佈局檢視

  1. 父檢視向其子檢視建議一個大小。
  2. 所有後續子檢視
    • 它們的子檢視建議一個大小
    • 詢問該子檢視它想要什麼大小
  3. 每個父檢視在其返回的大小下渲染其子檢視。

Flutter 的過程略有不同

  1. 父部件將約束傳遞給其子部件。約束包括高度和寬度的最小值和最大值。

  2. 子部件嘗試確定其大小。它對自己的子部件列表重複相同的過程

    • 它將其子部件的約束告知其子部件。
    • 它詢問其子部件它想要什麼大小。
  3. 父部件佈局子部件。

    • 如果請求的大小適合約束,則父部件使用該大小。
    • 如果請求的大小不適合約束,則父部件限制高度、寬度或兩者以適應其約束。

Flutter 與 SwiftUI 的不同之處在於,父元件可以覆蓋子元件的所需大小。部件不能擁有任何它想要的大小。它也無法知道或決定其在螢幕上的位置,因為其父元件做出該決定。

要強制子部件以特定大小渲染,父部件必須設定嚴格的約束。當約束的最小大小值等於其最大大小值時,約束變得嚴格。

SwiftUI 中,檢視可能會擴充套件到可用空間或限制其大小到其內容的大小。Flutter 部件表現出類似的行為。

但是,在 Flutter 中,父部件可以提供無界約束。無界約束將其最大值設定為無窮大。

dart
UnboundedBox(
  child: Container(
      width: double.infinity, height: double.infinity, color: red),
)

如果子部件擴充套件並且它具有無界約束,則 Flutter 會返回溢位警告

dart
UnconstrainedBox(
  child: Container(color: red, width: 4000, height: 50),
)
When parents pass unbounded constraints to children, and the children are expanding, then there is an overflow warning.

要了解約束在 Flutter 中如何工作,請參閱 Understanding constraints

設計系統

#

由於 Flutter 定位多個平臺,您的應用不需要符合任何設計系統。雖然本指南介紹了 Material 部件,但您的 Flutter 應用可以使用許多不同的設計系統

  • 自定義 Material 部件
  • 社群構建的部件
  • 您自己的自定義部件
  • Cupertino widgets 遵循 Apple 的 Human Interface Guidelines

在新的標籤頁上在 YouTube 上觀看:“Flutter's cupertino library for iOS developers”

如果您正在尋找一個具有自定義設計系統的優秀參考應用,請檢視 Wonderous

UI 基礎

#

本節涵蓋了 Flutter 中 UI 開發的基礎知識以及它與 SwiftUI 的比較。這包括如何開始開發您的應用、顯示靜態文字、建立按鈕、響應點選事件、顯示列表、網格等。

入門

#

SwiftUI 中,您使用 App 來啟動您的應用。

swift
@main
struct MyApp: App {
    var body: some Scene {
        WindowGroup {
            HomePage()
        }
    }
}

另一個常見的 SwiftUI 做法將應用主體放在符合 View 協議的 struct 中,如下所示

swift
struct HomePage: View {
  var body: some View {
    Text("Hello, World!")
  }
}

要啟動您的 Flutter 應用,請將您的應用的例項傳遞給 runApp 函式。

dart
void main() {
  runApp(const MyApp());
}

App 是一個部件。build 方法描述了它所代表的使用者介面的一部分。從 WidgetApp 類(如 CupertinoApp)開始您的應用是很常見的。

dart
class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    // Returns a CupertinoApp that, by default,
    // has the look and feel of an iOS app.
    return const CupertinoApp(home: HomePage());
  }
}

HomePage 中使用的部件可能從 Scaffold 類開始。Scaffold 實現了一個應用的基本佈局結構。

dart
class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return const Scaffold(body: Center(child: Text('Hello, World!')));
  }
}

請注意 Flutter 如何使用 Center 部件。SwiftUI 預設在中心渲染檢視的內容。這在 Flutter 中並不總是如此。Scaffold 不會在螢幕中心渲染其 body 部件。要將文字居中,請將其包裝在 Center 部件中。要了解不同的部件及其預設行為,請檢視 Widget catalog

新增按鈕

#

SwiftUI 中,您使用 Button 結構體來建立按鈕。

swift
Button("Do something") {
  // this closure gets called when your
  // button is tapped
}

要在 Flutter 中實現相同的結果,請使用 CupertinoButton

dart
CupertinoButton(
  onPressed: () {
    // This closure is called when your button is tapped.
  },
  const Text('Do something'),
),

Flutter 提供了具有預定義樣式的各種按鈕。 CupertinoButton 類來自 Cupertino 庫。Cupertino 庫中的部件使用 Apple 的設計系統。

水平對齊元件

#

SwiftUI 中,堆疊檢視在設計佈局中發揮著重要作用。兩個單獨的結構允許您建立堆疊

  1. HStack 用於水平堆疊檢視

  2. VStack 用於垂直堆疊檢視

以下 SwiftUI 檢視將地球影像和文字新增到水平堆疊檢視

swift
HStack {
  Image(systemName: "globe")
  Text("Hello, world!")
}

Flutter 使用 Row 而不是 HStack

dart
Row(
  mainAxisAlignment: MainAxisAlignment.center,
  children: [Icon(CupertinoIcons.globe), Text('Hello, world!')],
),

Row 部件需要在 children 引數中需要一個 List<Widget>mainAxisAlignment 屬性告訴 Flutter 如何定位具有額外空間的子部件。 MainAxisAlignment.center 將子部件定位在主軸的中心。對於 Row,主軸是水平軸。

垂直對齊元件

#

以下示例基於上一節中的示例。

SwiftUI 中,您使用 VStack 將元件排列成垂直柱。

swift
VStack {
  Image(systemName: "globe")
  Text("Hello, world!")
}

Flutter 使用與前面的示例相同的 Dart 程式碼,只是它將 Column 替換為 Row

dart
Column(
  mainAxisAlignment: MainAxisAlignment.center,
  children: [Icon(CupertinoIcons.globe), Text('Hello, world!')],
),

顯示列表檢視

#

SwiftUI 中,您使用 List 基本元件來顯示一系列專案。要顯示一系列模型物件,請確保使用者可以識別您的模型物件。要使物件可識別,請使用 Identifiable 協議。

swift
struct Person: Identifiable {
  var name: String
}

var persons = [
  Person(name: "Person 1"),
  Person(name: "Person 2"),
  Person(name: "Person 3"),
]

struct ListWithPersons: View {
  let persons: [Person]
  var body: some View {
    List {
      ForEach(persons) { person in
        Text(person.name)
      }
    }
  }
}

這類似於 Flutter 喜歡構建其列表部件的方式。Flutter 不需要列表項可識別。您設定要顯示的項數,然後為每個項構建一個部件。

dart
class Person {
  String name;
  Person(this.name);
}

final List<Person> items = [
  Person('Person 1'),
  Person('Person 2'),
  Person('Person 3'),
];

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: ListView.builder(
        itemCount: items.length,
        itemBuilder: (context, index) {
          return ListTile(title: Text(items[index].name));
        },
      ),
    );
  }
}

Flutter 對列表有一些注意事項

  • ListView 部件有一個 builder 方法。這與 SwiftUI 的 List 結構體中的 ForEach 類似。

  • ListViewitemCount 引數設定 ListView 顯示的項數。

  • itemBuilder 具有一個索引引數,該引數將在零到 itemCount 減一之間。

前面的示例為每個項返回一個 ListTile 部件。 ListTile 部件包括 heightfont-size 等屬性。這些屬性有助於構建列表。但是,Flutter 允許您返回幾乎任何代表您資料的部件。

顯示網格

#

SwiftUI 中構建非條件網格時,您使用 GridGridRow

swift
Grid {
  GridRow {
    Text("Row 1")
    Image(systemName: "square.and.arrow.down")
    Image(systemName: "square.and.arrow.up")
  }
  GridRow {
    Text("Row 2")
    Image(systemName: "square.and.arrow.down")
    Image(systemName: "square.and.arrow.up")
  }
}

要在 Flutter 中顯示網格,請使用 GridView 部件。此部件有各種建構函式。每個建構函式都有一個類似的目標,但使用不同的輸入引數。以下示例使用 .builder() 初始化器

dart
const widgets = [
  Text('Row 1'),
  Icon(CupertinoIcons.arrow_down_square),
  Icon(CupertinoIcons.arrow_up_square),
  Text('Row 2'),
  Icon(CupertinoIcons.arrow_down_square),
  Icon(CupertinoIcons.arrow_up_square),
];

class HomePage extends StatelessWidget {
  const HomePage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: GridView.builder(
        gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
          crossAxisCount: 3,
          mainAxisExtent: 40,
        ),
        itemCount: widgets.length,
        itemBuilder: (context, index) => widgets[index],
      ),
    );
  }
}

SliverGridDelegateWithFixedCrossAxisCount 委託確定網格用於佈局其元件的各種引數。這包括 crossAxisCount,它決定每行顯示的項數。

SwiftUI 的 Grid 和 Flutter 的 GridView 的不同之處在於 Grid 需要 GridRowGridView 使用委託來決定如何佈局其元件。

建立滾動檢視

#

SwiftUI 中,您使用 ScrollView 來建立自定義滾動元件。以下示例在可滾動的方式中顯示一系列 PersonView 例項。

swift
ScrollView {
  VStack(alignment: .leading) {
    ForEach(persons) { person in
      PersonView(person: person)
    }
  }
}

要建立一個滾動檢視,Flutter 使用 SingleChildScrollView。在以下示例中,函式 mockPerson 模擬 Person 類的例項來建立自定義 PersonView 部件。

dart
SingleChildScrollView(
  child: Column(
    children: mockPersons
        .map((person) => PersonView(person: person))
        .toList(),
  ),
),

響應式和自適應設計

#

SwiftUI 中,您使用 GeometryReader 來建立相對檢視大小。

例如,您可以

  • geometry.size.width 乘以某個因子來設定寬度
  • GeometryReader 作為斷點來更改應用的設計。

你也可以使用 horizontalSizeClass 來檢視尺寸類別是否具有 .regular.compact

要在 Flutter 中建立相對檢視,你可以使用以下兩種選項之一

  • LayoutBuilder 類中獲取 BoxConstraints 物件。
  • 在你的構建函式中使用 MediaQuery.of() 來獲取當前應用程式的尺寸和方向。

要了解更多資訊,請檢視 建立響應式和自適應應用

狀態管理

#

SwiftUI 中,你使用 @State 屬性包裝器來表示 SwiftUI 檢視的內部狀態。

swift
struct ContentView: View {
  @State private var counter = 0;
  var body: some View {
    VStack{
      Button("+") { counter+=1 }
      Text(String(counter))
    }
  }}

SwiftUI 還包含一些用於更復雜狀態管理的選項,例如 ObservableObject 協議。

Flutter 使用 StatefulWidget 管理區域性狀態。使用以下兩個類實現一個有狀態的 Widget

  • StatefulWidget 的子類
  • State 的子類

State 物件儲存 Widget 的狀態。要更改 Widget 的狀態,請從 State 子類呼叫 setState(),以告知框架重新繪製 Widget。

以下示例顯示了一個計數器應用的一部分

dart
class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key});
  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            Text('$_counter'),
            TextButton(
              onPressed: () => setState(() {
                _counter++;
              }),
              child: const Text('+'),
            ),
          ],
        ),
      ),
    );
  }
}

要了解更多狀態管理方法,請檢視 狀態管理

動畫

#

存在兩種主要的 UI 動畫型別。

  • 隱式動畫,從當前值動畫到新的目標值。
  • 顯式動畫,在被要求時進行動畫處理。

隱式動畫

#

SwiftUI 和 Flutter 在動畫方面採取類似的方法。在這兩個框架中,你指定諸如 durationcurve 等引數。

SwiftUI 中,你使用 animate() 修飾符來處理隱式動畫。

swift
Button("Tap me!"){
   angle += 45
}
.rotationEffect(.degrees(angle))
.animation(.easeIn(duration: 1))

Flutter 包含用於隱式動畫的 Widget。這簡化了常見 Widget 的動畫處理。Flutter 將這些 Widget 命名為以下格式:AnimatedFoo

例如:要旋轉一個按鈕,請使用 AnimatedRotation 類。這將動畫化 Transform.rotate Widget。

dart
AnimatedRotation(
  duration: const Duration(seconds: 1),
  turns: turns,
  curve: Curves.easeIn,
  TextButton(
    onPressed: () {
      setState(() {
        turns += .125;
      });
    },
    const Text('Tap me!'),
  ),
),

Flutter 允許你建立自定義隱式動畫。要組合一個新的動畫 Widget,請使用 TweenAnimationBuilder

顯式動畫

#

對於顯式動畫,SwiftUI 使用 withAnimation() 函式。

Flutter 包含命名格式為 FooTransition 的顯式動畫 Widget。一個例子是 RotationTransition 類。

Flutter 還允許你使用 AnimatedWidgetAnimatedBuilder 建立自定義顯式動畫。

要了解有關 Flutter 動畫的更多資訊,請參閱 動畫概述

在螢幕上繪圖

#

SwiftUI 中,你使用 CoreGraphics 將線條和形狀繪製到螢幕上。

Flutter 具有基於 Canvas 類的 API,其中包含兩個幫助你繪製的類

  1. CustomPaint 需要一個畫家

    dart
    CustomPaint(
      painter: SignaturePainter(_points),
      size: Size.infinite,
    ),
    
  2. CustomPainter 實現你的演算法來繪製到畫布上。

    dart
    class SignaturePainter extends CustomPainter {
      SignaturePainter(this.points);
    
      final List<Offset?> points;
    
      @override
      void paint(Canvas canvas, Size size) {
        final Paint paint = Paint()
          ..color = Colors.black
          ..strokeCap = StrokeCap.round
          ..strokeWidth = 5;
        for (int i = 0; i < points.length - 1; i++) {
          if (points[i] != null && points[i + 1] != null) {
            canvas.drawLine(points[i]!, points[i + 1]!, paint);
          }
        }
      }
    
      @override
      bool shouldRepaint(SignaturePainter oldDelegate) =>
          oldDelegate.points != points;
    }
    
#

本節解釋瞭如何在應用程式的頁面之間導航,推送和彈出機制等。

#

開發者使用不同的頁面(稱為導航路由)構建 iOS 和 macOS 應用程式。

SwiftUI 中,NavigationStack 表示這個頁面堆疊。

以下示例建立一個顯示人員列表的應用程式。要在一個新的導航連結中顯示人員的詳細資訊,請點選該人員。

swift
NavigationStack(path: $path) {
      List {
        ForEach(persons) { person in
          NavigationLink(
            person.name,
            value: person
          )
        }
      }
      .navigationDestination(for: Person.self) { person in
        PersonView(person: person)
      }
    }

如果你有一個沒有複雜連結的小 Flutter 應用程式,請使用 Navigator 和命名路由。定義導航路由後,使用它們的名稱呼叫你的導航路由。

  1. 在傳遞給 runApp() 函式的類中命名每個路由。以下示例使用 App

    dart
    // Defines the route name as a constant
    // so that it's reusable.
    const detailsPageRouteName = '/details';
    
    class App extends StatelessWidget {
      const App({super.key});
    
      @override
      Widget build(BuildContext context) {
        return CupertinoApp(
          home: const HomePage(),
          // The [routes] property defines the available named routes
          // and the widgets to build when navigating to those routes.
          routes: {detailsPageRouteName: (context) => const DetailsPage()},
        );
      }
    }
    

    以下示例使用 mockPersons() 生成人員列表。點選人員會將人員的詳細資訊頁面推送到 Navigator,使用 pushNamed()

    dart
    ListView.builder(
      itemCount: mockPersons.length,
      itemBuilder: (context, index) {
        final person = mockPersons.elementAt(index);
        final age = '${person.age} years old';
        return ListTile(
          title: Text(person.name),
          subtitle: Text(age),
          trailing: const Icon(Icons.arrow_forward_ios),
          onTap: () {
            // When a [ListTile] that represents a person is
            // tapped, push the detailsPageRouteName route
            // to the Navigator and pass the person's instance
            // to the route.
            Navigator.of(
              context,
            ).pushNamed(detailsPageRouteName, arguments: person);
          },
        );
      },
    ),
    
  2. 定義 DetailsPage Widget,它顯示每個人的詳細資訊。在 Flutter 中,你可以在導航到新路由時將引數傳遞到 Widget 中。使用 ModalRoute.of() 提取引數

    dart
    class DetailsPage extends StatelessWidget {
      const DetailsPage({super.key});
    
      @override
      Widget build(BuildContext context) {
        // Read the person instance from the arguments.
        final Person person = ModalRoute.of(context)?.settings.arguments as Person;
        // Extract the age.
        final age = '${person.age} years old';
        return Scaffold(
          // Display name and age.
          body: Column(children: [Text(person.name), Text(age)]),
        );
      }
    }
    

要建立更高階的導航和路由需求,請使用路由包,例如 go_router

要了解更多關於導航和路由的資訊,請檢視 導航和路由

手動返回

#

SwiftUI 中,你使用 dismiss 環境值返回到上一螢幕。

swift
Button("Pop back") {
        dismiss()
      }

Flutter 中,使用 Navigator 類的 pop() 函式

dart
TextButton(
  onPressed: () {
    // This code allows the
    // view to pop back to its presenter.
    Navigator.of(context).pop();
  },
  child: const Text('Pop back'),
),
#

SwiftUI 中,你使用 openURL 環境變數開啟指向另一個應用程式的 URL。

swift
@Environment(\.openURL) private var openUrl

// View code goes here

 Button("Open website") {
      openUrl(
        URL(
          string: "https://google.com"
        )!
      )
    }

Flutter 中,使用 url_launcher 外掛。

dart
CupertinoButton(
  onPressed: () async {
    await launchUrl(Uri.parse('https://google.com'));
  },
  const Text('Open website'),
),

主題、樣式和媒體

#

你可以毫不費力地設定 Flutter 應用程式的樣式。樣式包括在亮色和暗色主題之間切換、更改文字和 UI 元件的設計等等。本節介紹如何設定應用程式的樣式。

使用深色模式

#

SwiftUI 中,你呼叫 View 上的 preferredColorScheme() 函式來使用深色模式。

Flutter 中,你可以在應用程式級別控制亮色和暗色模式。要控制亮度模式,請使用 App 類的 theme 屬性

dart
const CupertinoApp(
  theme: CupertinoThemeData(brightness: Brightness.dark),
  home: HomePage(),
);

文字樣式

#

SwiftUI 中,你使用修飾符函式來設定文字樣式。例如,要更改 Text 字串的字型,請使用 font() 修飾符

swift
Text("Hello, world!")
  .font(.system(size: 30, weight: .heavy))
  .foregroundColor(.yellow)

要設定 Flutter 中的文字樣式,請將 TextStyle Widget 作為 Text Widget 的 style 引數的值新增。

dart
Text(
  'Hello, world!',
  style: TextStyle(
    fontSize: 30,
    fontWeight: FontWeight.bold,
    color: CupertinoColors.systemYellow,
  ),
),

設定按鈕樣式

#

SwiftUI 中,你使用修飾符函式來設定按鈕樣式。

swift
Button("Do something") {
    // do something when button is tapped
  }
  .font(.system(size: 30, weight: .bold))
  .background(Color.yellow)
  .foregroundColor(Color.blue)
}

要設定 Flutter 中的按鈕 Widget 樣式,請設定其子項的樣式,或修改按鈕本身上的屬性。

在以下示例中

  • CupertinoButtoncolor 屬性設定其 color
  • Text Widget 的 color 屬性設定按鈕文字顏色。
dart
child: CupertinoButton(
  color: CupertinoColors.systemYellow,
  onPressed: () {},
  padding: const EdgeInsets.all(16),
  child: const Text(
    'Do something',
    style: TextStyle(
      color: CupertinoColors.systemBlue,
      fontSize: 30,
      fontWeight: FontWeight.bold,
    ),
  ),
),

使用自定義字型

#

SwiftUI 中,你可以在應用程式中使用自定義字型,分兩個步驟。首先,將字型檔案新增到你的 SwiftUI 專案中。新增檔案後,使用 .font() 修飾符將其應用於你的 UI 元件。

swift
Text("Hello")
  .font(
    Font.custom(
      "BungeeSpice-Regular",
      size: 40
    )
  )

Flutter 中,你使用名為 pubspec.yaml 的檔案來控制你的資源。此檔案與平臺無關。要將自定義字型新增到你的專案中,請按照以下步驟操作

  1. 在專案的根目錄中建立一個名為 fonts 的資料夾。此可選步驟有助於組織你的字型。

  2. 將你的 .ttf.otf.ttc 字型檔案新增到 fonts 資料夾中。

  3. 開啟專案中的 pubspec.yaml 檔案。

  4. 找到 flutter 部分。

  5. fonts 部分下新增你的自定義字型。

    yaml
    flutter:
      fonts:
        - family: BungeeSpice
          fonts:
            - asset: fonts/BungeeSpice-Regular.ttf
    

在將字型新增到你的專案後,你可以像在以下示例中那樣使用它

dart
Text(
  'Cupertino',
  style: TextStyle(fontSize: 40, fontFamily: 'BungeeSpice'),
),

在應用中捆綁影像

#

SwiftUI 中,你首先將影像檔案新增到 Assets.xcassets,然後使用 Image 檢視來顯示影像。

要在 Flutter 中新增影像,請遵循與新增自定義字型類似的方法。

  1. images 資料夾新增到根目錄。

  2. 將此資源新增到 pubspec.yaml 檔案。

    yaml
    flutter:
      assets:
        - images/Blueberries.jpg
    

新增影像後,使用 Image Widget 的 .asset() 建構函式顯示它。此建構函式

  1. 使用提供的路徑例項化給定的影像。
  2. 從與你的應用程式捆綁的資源中讀取影像。
  3. 在螢幕上顯示影像。

要檢視完整的示例,請檢視 Image 文件。

在應用中捆綁影片

#

SwiftUI 中,你將本地影片檔案與你的應用程式捆綁在一起,分兩個步驟。首先,你匯入 AVKit 框架,然後你例項化一個 VideoPlayer 檢視。

Flutter 中,將 video_player 外掛新增到你的專案中。此外掛允許你從相同的程式碼庫建立在 Android、iOS 和 Web 上工作的影片播放器。

  1. 將外掛新增到你的應用程式並將影片檔案新增到你的專案中。
  2. 將資源新增到你的 pubspec.yaml 檔案。
  3. 使用 VideoPlayerController 類載入和播放你的影片檔案。

要檢視完整的演練,請檢視 video_player 示例