gpt4 book ai didi

flutter - 如何将图像适合作为状态栏的背景?

转载 作者:IT王子 更新时间:2023-10-29 06:56:18 25 4
gpt4 key购买 nike

enter image description here

enter image description here

我正在尝试在 flutter 项目的状态栏背景中应用图像。那么哪个小部件可以帮助我应用以下预期结果。

详细页面.dart

import 'package:flutter/material.dart';

class MyDetailPage extends StatefulWidget {
@override
_MyDetailPageState createState() => _MyDetailPageState();
}

class _MyDetailPageState extends State<MyDetailPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Stack(
children: <Widget>[
Container(
height: 300,
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/image2.png"),
fit: BoxFit.fitHeight,
),
),
)
],
),
);
}
}

最佳答案

使用脚手架属性extendBodyBehindAppBar: true, 和设置 statusBarColor: Colors.transparent

此代码用于状态栏颜色。

SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
statusBarColor: Colors.transparent
));

这是我当前项目中的代码示例。

  @override
Widget build(BuildContext context) {
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
statusBarColor: Colors.transparent
));
return Scaffold(
extendBodyBehindAppBar: true,
body: Column(
children: [
Container(
height: 250,
child: Container(
child: Stack(
alignment: Alignment.topLeft,
children: [
Container(
width: screenWidthPercentage(context,percentage: 1),
child: Image.network(
contentImage,
fit: BoxFit.cover,
),
),
Padding(
padding: const EdgeInsets.only(top: 48.0,left: 12),
child: Icon(Icons.arrow_back,color: Colors.white,),
),
],
),
),
),

],
),
);
}
}

Result:

关于flutter - 如何将图像适合作为状态栏的背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56863938/

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