我想在 Ubuntu 20.04 上安装 kubectx。我找不到任何有关如何操作的信息。非常感谢任何评论。谢谢!
我想增加CupertinoNavigationBar身高。代码是这样的:
child: CustomCupertinoNavigationBar(
padding: EdgeInsetsDirectional.zero,
backgroundColor: Colors.white,
middle: Semantics(
label: "dashboard-main-page-title",
child: Text(
"My Title",
style: TextStyles.HankenSans_Bold_18_PrimaryBlack,
key: Key('dashboard-main-page-title'),
),
),
leading: Semantics(
label: "dashboard-back-button",
child: Material(
color: Colors.white,
child: CustomBackButton(
onPressHandler: () {
Navigation().openMyAccountPage();
},
),
),
),
);
Run Code Online (Sandbox Code Playgroud)
我尝试创建自己的定制库比蒂诺。我复制 cupertino/nav_bar.dart 并更改了_kNavBarPersistentHeight参数,const double _kNavBarPersistentHeight = 58.0;但它导致 IOS 中出现两个导航栏。有人能帮我解决这个问题吗?非常感激。