gpt4 book ai didi

flutter - 如何在 Flutter 中使用大标题导航栏?

转载 作者:行者123 更新时间:2023-12-03 03:50:17 26 4
gpt4 key购买 nike

这是我使用 CupertinoNavigationBar() 时得到的结果

标准标题导航栏 - Standard title Navigation Bar

这就是我需要实现的 - Large title Navigation Bar

最佳答案

您可以结帐this解释教程,但教程中的代码是:

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return CupertinoApp(
title: 'Flutter Demo',
home: HomePage(),
);
}
}

class HomePage extends StatelessWidget{
@override
Widget build(BuildContext context) {
return CupertinoPageScaffold(
child: NestedScrollView(
headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled){
return <Widget>[
CupertinoSliverNavigationBar(
largeTitle: Text('Settings'),
)
];
},
body: Center(child: Text('Home Page'),),
),
);
}
}

此代码使大文本成为带有大标题的应用栏,如下图所示:

Appbar image

关于flutter - 如何在 Flutter 中使用大标题导航栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63762723/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com