【发布时间】:2019-04-14 13:38:33
【问题描述】:
我正在尝试显示标题,但如您所见,它没有正确显示。
我尝试将 softWrap 设置为 true,但还是一样。
代码来自flutter contacts_demo gallery
flexibleSpace: FlexibleSpaceBar(
title: const Text('Fantastic Beasts And Where To Find Them'),
background: Stack(
fit: StackFit.expand,
children: <Widget>[
Image.asset(
'people/ali_landscape.png',
package: 'flutter_gallery_assets',
fit: BoxFit.cover,
height: _appBarHeight,
),
// This gradient ensures that the toolbar icons are distinct
// against the background image.
const DecoratedBox(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment(0.0, -1.0),
end: Alignment(0.0, -0.4),
colors: <Color>[Color(0x60000000), Color(0x00000000)],
),
),
),
],
),
),
【问题讨论】:
-
你希望它是什么样子?
-
位置还可以,我只想显示整个标题
标签: flutter flutter-layout flutter-sliver