是否有一种简单的(非layoutbuilder)方法来相对于屏幕大小(宽/高)来调整元素的大小?例如:我如何设置CardView的宽度为屏幕宽度的65%。
它不能在build方法内部完成(显然),所以它必须延迟到构建后。是否有一个更好的地方来放置这样的逻辑?
build
你可以用灵活的或Expanded子元素构建一个Column/Row,这些子元素的伸缩值加起来就是你想要的百分比。
你可能还会发现AspectRatio小部件很有用。
FractionallySizedBox也可能有用。 你也可以直接从MediaQuery.of(context).size读取屏幕宽度,并基于
FractionallySizedBox
MediaQuery.of(context).size
MediaQuery.of(context).size.width * 0.65
如果你真的想把屏幕的大小设置成一小部分不管布局是什么。
这可能更清楚一点:
double width = MediaQuery.of(context).size.width; double yourWidth = width * 0.65;
希望这能解决你的问题。
如果你正在使用GridView,你可以使用Ian Hickson的解决方案。
crossAxisCount: MediaQuery.of(context).size.width <= 400.0 ? 3 : MediaQuery.of(context).size.width >= 1000.0 ? 5 : 4
MediaQuery.of(context).size.width
您可以使用MediaQuery与您的小部件的当前上下文,并像这样获得宽度或高度 double width = MediaQuery.of(context).size.width double height = MediaQuery.of(context).size.height 之后,您可以将其与您想要的百分比相乘
double width = MediaQuery.of(context).size.width double height = MediaQuery.of(context).size.height
这是一个补充回答,展示了两个解决方案的实现。
如果你有一个小部件,你可以使用FractionallySizedBox小部件来指定可用空间的百分比来填充。这里绿色的Container被设置为填充可用宽度的70%和可用高度的30%。
Container
Widget myWidget() { return FractionallySizedBox( widthFactor: 0.7, heightFactor: 0.3, child: Container( color: Colors.green, ), ); }
Expanded小部件允许小部件填充可用空间,如果它在一行中,则水平填充,如果在列中,则垂直填充。你可以对多个小部件使用flex属性来赋予它们权重。这里绿色的Container占宽度的70%,黄色的Container占宽度的30%。
Expanded
flex
如果你想垂直地做,那么只需用Column替换Row。
Column
Row
Widget myWidget() { return Row( children: <Widget>[ Expanded( flex: 7, child: Container( color: Colors.green, ), ), Expanded( flex: 3, child: Container( color: Colors.yellow, ), ), ], ); }
下面是main.dart代码供您参考。
main.dart
import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( title: Text("FractionallySizedBox"), ), body: myWidget(), ), ); } } // replace with example code above Widget myWidget() { return ... }
首先确定屏幕的大小。
Size size = MediaQuery.of(context).size;
在此之后,你可以得到width并将其与0.5相乘以获得屏幕宽度的50%。
width
0.5
double width50 = size.width * 0.5;
但问题通常出现在height,默认情况下,当我们使用
height
double screenHeight = size.height;
我们得到的高度是全局高度,包括StatusBar + notch + AppBar高度。因此,为了得到设备的左高度,我们需要从总高度中减去padding高度(StatusBar + notch)和AppBar高度。我们是这样做的。
StatusBar
notch
AppBar
padding
double abovePadding = MediaQuery.of(context).padding.top; double appBarHeight = appBar.preferredSize.height; double leftHeight = screenHeight - abovePadding - appBarHeight;
现在我们可以使用跟随来获得屏幕高度的50%。
double height50 = leftHeight * 0.5
有很多方法可以做到这一点。
返回你的设备全屏,包括应用程序栏,工具栏
Container( width: MediaQuery.of(context).size.width * 0.50, height: MediaQuery.of(context).size.height*0.50, color: Colors.blueAccent[400], )
< br > < br >
你可以按比例设置宽/高
Container( height: MediaQuery.of(context).size.height * 0.50, child: Row( children: <Widget>[ Expanded( flex: 70, child: Container( color: Colors.lightBlue[400], ), ), Expanded( flex: 30, child: Container( color: Colors.deepPurple[800], ), ) ], ), )
使用LayoutBuilder小部件,它将为您提供约束,您可以使用这些约束来获得不包括AppBar和填充的高度。然后使用sizebox并使用来自LayoutBuilder的约束提供宽度和高度
return LayoutBuilder(builder: (context2, constraints) { return Column( children: <Widget>[ SizedBox( width: constraints.maxWidth, height: constraints.maxHeight, ...
代码:
MediaQuery.of(context).size.width //to get the width of screen MediaQuery.of(context).size.height //to get height of screen
有几种可能性:
MediaQuery
使用示例:
Container( color: Colors.yellow, height: MediaQuery.of(context).size.height * 0.65, width: MediaQuery.of(context).size.width, )
输出:
创建一个小部件,将其子部件的大小设置为总可用空间的一小部分。
例子:
FractionallySizedBox( widthFactor: 0.65, // between 0 and 1 heightFactor: 1.0, child:Container(color: Colors.red ,), )
Flexible
AspectRatio
你可以使用对齐小部件。heightFactor和widthFactor参数乘以子部件的大小。下面是一个示例,它将创建一个具有%比例固定高度的小部件
Align( alignment: Alignment.topCenter, heightFactor: 0.63, widthFactor: , child: Container( width: double.infinity, ),
的宽度
double width = MediaQuery.of(context).size.width; double yourWidth = width * 0.75;
身高
double height = MediaQuery.of(context).size.height; double yourHeight = height * 0.75;
如果你不想要静态的高度和宽度,只需使用Expanded小部件\
import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); 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(), ); } } class MyStatelessWidget extends StatelessWidget { const MyStatelessWidget({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Expanded Row Sample'), ), body: Center( child: Row( children: <Widget>[ Expanded( flex: 2, child: Container( color: Colors.amber, height: 100, ), ), Container( color: Colors.blue, height: 100, width: 50, ), Expanded( child: Container( color: Colors.amber, height: 100, ), ), ], ), ), ); } }