【发布时间】:2021-03-14 21:29:22
【问题描述】:
在下面的示例中,FittedBox 做了我想做的事:它适合容器的高度。但是,它应该隐藏图像的其余部分。但是,它会渲染它。
怎么了?
/// Flutter code sample for Expanded
// This example shows how to use an [Expanded] widget in a [Column] so that
// its middle child, a [Container] here, expands to fill the space.
//
// 
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
/// This is the main application widget.
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
static const String _title = 'Flutter Code Sample';
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: _title,
home: MyStatelessWidget(),
);
}
}
/// This is the stateless widget that the main application instantiates.
class MyStatelessWidget extends StatelessWidget {
const MyStatelessWidget({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Expanded Column Sample'),
),
body: Center(
child: Container(
width: 100,
child: Column(
children: <Widget>[
Container(
color: Colors.blue,
height: 100,
width: 100,
),
Expanded(
child: Container(
color: Colors.amber,
child: FittedBox(
fit: BoxFit.fitHeight,
child: Image.network(
'https://i.ytimg.com/vi/E5fD0SSqPa0/maxresdefault.jpg'))
),
),
Container(
color: Colors.blue,
height: 100,
width: 100,
),
],
)),
),
);
}
}
根据https://api.flutter.dev/flutter/widgets/FittedBox-class.html,它应该适合高度但忽略图像的剩余部分
【问题讨论】:
-
由于拟合的盒子在左右两边都有空间,它会渲染图像。我在这里没有发现任何问题。
-
@MindStudio 请查看我的更新。我将
Expandeds 的父级宽度设为宽度