- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我喜欢 FadeInImage
我可以做这个
child: FadeInImage.assetNetwork(
image: 'https://placeimg.com/640/480/any',
placeholder: 'assets/images/loading.gif',
),
FadeInImage
在
BoxDecoration
如下。
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(8.0),
image: DecorationImage(
image: FadeInImage.assetNetwork(
'${document['image']}'),
fit: BoxFit.cover,
),
),
The argument type 'FadeInImage' can't be assigned to the parameter type 'ImageProvider'
carousel_slider
包)
Widget _carouselSlider(BuildContext context) {
return StreamBuilder<QuerySnapshot>(
stream: Firestore.instance.collection('events').snapshots(),
builder: (BuildContext context, AsyncSnapshot<QuerySnapshot> snapshot) {
if (snapshot.hasError) return new Text('Error: ${snapshot.error}');
switch (snapshot.connectionState) {
case ConnectionState.waiting:
return new Text('Loading...');
default:
return CarouselSlider(
height: 150.0,
enlargeCenterPage: true,
enableInfiniteScroll: false,
items: snapshot.data.documents.map((DocumentSnapshot document) {
print('Listing the documents: $document');
return Builder(
builder: (BuildContext context) {
return GestureDetector(
onTap: () {
print('I am clicked');
Navigator.pushNamed(context, '/detail');
},
child: Container(
width: MediaQuery.of(context).size.width,
margin: EdgeInsets.only(
left: 5.0, right: 5.0, bottom: 20.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(8.0),
image: DecorationImage(
image: NetworkImage('${document['image']}'),
fit: BoxFit.cover,
),
),
child: Center(
child: Text(
'${document['name']}',
style: TextStyle(fontSize: 16.0),
),
),
),
);
},
);
}).toList(),
);
}
},
);
}
image: DecorationImage(
image: NetworkImage('${document['image']}'),
fit: BoxFit.cover,
),
最佳答案
这是代码。
class _HomePageState extends State<HomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Center(
child: FutureBuilder<bool>(
future: _myFuture(),
builder: (BuildContext context, AsyncSnapshot snapshot) {
if (snapshot.hasData) return _yourWidget();
return CircularProgressIndicator();
},
)),
);
}
Widget _yourWidget() {
return Stack(
children: <Widget>[
Center(
child: FadeInImage(
width: 300,
height: 300,
placeholder: AssetImage(chocolateImage),
image: NetworkImage(poolImageUrl),
fit: BoxFit.cover,
),
),
Center(child: Text('Pool', style: TextStyle(fontSize: 36.0, color: Colors.white, fontWeight: FontWeight.bold))),
],
);
}
Future<bool> _myFuture() async {
await Future.delayed(Duration(milliseconds: 10500));
return true;
}
}
关于flutter - BoxDecoration 中的 FadeInImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57848880/
我的应用程序中有一个 FadeInImage,图像加载是为了响应用户操作。这意味着在运行时,我不知道图像,只是希望 FadeInImage 不显示任何内容。 如果我为图像传递 null 或空字符串,我
我正在尝试使用 FadeInImage 显示整个屏幕背景图像,使用 onFocusChange 更改它们。 目前只有初始图像使用淡入淡出,然后图像才被替换。 寻求帮助: 如何使用 FadeInImag
我喜欢 FadeInImage 我可以做这个 child: FadeInImage.assetNetwork( image: 'https://placeimg.com/640/480/any
代码: FadeInImage( placeholder: MyOwnWidget(), // error image: NetworkImage(url), ) 我想为 placeholde
我喜欢 FadeInImage 我能做到 child: FadeInImage.assetNetwork( image: 'https://placeimg.com/640/480/any',
我正在使用 FadeInImage 小部件在我的应用程序中显示网络图像。因为我想使用 FadeInImage 的占位符属性,所以我不能使用 NetworkImage 或 Image.Network W
我想知道如何使用 FadeInImage 和 cacheHeight 同时用于assetImage。 FadeInImage.assetNetwork 似乎有 cacheHeight和 FadeInI
我有以下代码在轮播中显示网络图像。当我启动我的应用程序时,我在轮播中看到一个空白的白色屏幕。我想改为显示占位符图像。我试图将占位符图像放在 if 子句下,但 if 子句仅在我导航到另一个屏幕并返回轮播
您好,我正在使用带有占位符和图像的 FadeInImage,但第二张图像没有覆盖整个父级,我正在使用 fit:BoxFit.cover 但无论如何结果都不好。任何人都知道如何使它成为可能。这是我的实际
我想使用带有图标的 FadeInImage 作为占位符。 FadeInImage 的构造函数很少。 在默认构造函数中,它采用 ImageProvider 作为占位符,在 FadeInImage.Mem
这是我的代码。这会生成一个矩形图像。 return Container( width: 325, height: 245, decoration: BoxD
我有一个使用 FadeInImage.assetNetwork 加载图像的小部件,第一次加载应用程序时,图像淡入工作正常,而当我尝试更新图像 URL 状态时,FadeInImage 选项不起作用。 B
我正在使用带有占位符的 FadeInImage.assetNetwork 显示图像,这适用于公共(public)图像。但是,我需要在获取一些图像时使用访问 header 。如何实现这一点,因为 Fad
我是一名优秀的程序员,十分优秀!