Flutter-为你的APP添加一个底栏 2021-3-02 15:51 | 1,206 | 0 | Dart,计算机科学与技术 281 字 | 8 分钟 要实现一个底栏有哪些解决方案呢? 我们需要:AppBar(TabBar) 或者是更为标准的 bottomNavigationBar 先来介绍第一种吧 AppBar版 先开一个main.dart import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } /// T…