我怎样才能让材料按钮矩阵在整个屏幕上伸展,如果我只使用高度,它们会根据屏幕大小伸展到很小或超出屏幕?
我可以在高度矩阵中轻松做到这一点:double.infinity 和 CrossAxisAlignment.stretch。
虽然当我将 Stack 和 Positioned 小部件添加到组合中时,如果我使用 height: double.infinity,屏幕会变白。我得到错误: BoxConstraints 强制无限高。相关的导致错误的小部件是:MaterialButton file:///Users/janiveble/AndroidStudioProjects/midi_app/lib/main.dart:113:14
虽然当我搜索这个错误时,我无法弄清楚它与我的问题有什么关系。
另外,如何将白键上的文本定位到键的底部而不是中心?
我也想得到白键的宽度,因为我想用它来控制黑键的位置和宽度。
Expanded buildWhiteKey({Color color, int soundNumber}) {
return Expanded(
child: MaterialButton(
//height: double.infinity,
height: 100,
color: color,
textColor: Colors.red,
padding: EdgeInsets.all(1.0),
onPressed: () {
//playSound(soundNumber);
FlutterMidi.playMidiNote(midi: soundNumber);
setState(() {
userAnswer = soundNumber;
});
},
child: Text('$soundNumber'),
),
);
}
Expanded buildBlackKey({Color color, int soundNumber}) {
return Expanded(
child: MaterialButton(
//height: double.infinity,
height: 100,
color: color,
textColor: Colors.red,
padding: EdgeInsets.all(1.0),
onPressed: () {
//playSound(soundNumber);
FlutterMidi.playMidiNote(midi: soundNumber);
setState(() {
userAnswer = soundNumber;
});
},
child: Text(
'$soundNumber',
),
),
);
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.white30,
body: SafeArea(
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Row(
children: <Widget>[
quizKey(color: Colors.green),
checkAnswer(color: Colors.red),
],
),
Stack(children: <Widget>[
Row(mainAxisSize: MainAxisSize.min, children: <Widget>[
buildWhiteKey(color: Colors.white, soundNumber: 96),
buildWhiteKey(color: Colors.white, soundNumber: 98),
buildWhiteKey(color: Colors.white, soundNumber: 100),
buildWhiteKey(color: Colors.white, soundNumber: 101),
buildWhiteKey(color: Colors.white, soundNumber: 103),
buildWhiteKey(color: Colors.white, soundNumber: 105),
buildWhiteKey(color: Colors.white, soundNumber: 107),
]),
Positioned(
left: 0.0,
right: 0.0,
bottom: 50.0,
top: 0.0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(width: keyWidth),
buildBlackKey(color: Colors.black, soundNumber: 97),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 99),
Container(width: keyWidth2),
buildBlackKey(color: Colors.black, soundNumber: 102),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 104),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 106),
Container(width: keyWidth),
])),
]),
Stack(children: <Widget>[
Row(mainAxisSize: MainAxisSize.min, children: <Widget>[
buildWhiteKey(color: Colors.white, soundNumber: 84),
buildWhiteKey(color: Colors.white, soundNumber: 86),
buildWhiteKey(color: Colors.white, soundNumber: 88),
buildWhiteKey(color: Colors.white, soundNumber: 89),
buildWhiteKey(color: Colors.white, soundNumber: 91),
buildWhiteKey(color: Colors.white, soundNumber: 93),
buildWhiteKey(color: Colors.white, soundNumber: 95),
]),
Positioned(
left: 0.0,
right: 0.0,
bottom: 50.0,
top: 0.0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(width: keyWidth),
buildBlackKey(color: Colors.black, soundNumber: 85),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 87),
Container(width: keyWidth2),
buildBlackKey(color: Colors.black, soundNumber: 90),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 92),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 94),
Container(width: keyWidth),
])),
]),
Stack(children: <Widget>[
Row(mainAxisSize: MainAxisSize.min, children: <Widget>[
buildWhiteKey(color: Colors.white, soundNumber: 72),
buildWhiteKey(color: Colors.white, soundNumber: 74),
buildWhiteKey(color: Colors.white, soundNumber: 76),
buildWhiteKey(color: Colors.white, soundNumber: 77),
buildWhiteKey(color: Colors.white, soundNumber: 79),
buildWhiteKey(color: Colors.white, soundNumber: 81),
buildWhiteKey(color: Colors.white, soundNumber: 83),
]),
Positioned(
left: 0.0,
right: 0.0,
bottom: 50.0,
top: 0.0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(width: keyWidth),
buildBlackKey(color: Colors.black, soundNumber: 73),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 75),
Container(width: keyWidth2),
buildBlackKey(color: Colors.black, soundNumber: 78),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 80),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 82),
Container(width: keyWidth),
])),
]),
Stack(children: <Widget>[
Row(mainAxisSize: MainAxisSize.min, children: <Widget>[
buildWhiteKey(color: Colors.white, soundNumber: 60),
buildWhiteKey(color: Colors.white, soundNumber: 62),
buildWhiteKey(color: Colors.white, soundNumber: 64),
buildWhiteKey(color: Colors.white, soundNumber: 65),
buildWhiteKey(color: Colors.white, soundNumber: 67),
buildWhiteKey(color: Colors.white, soundNumber: 69),
buildWhiteKey(color: Colors.white, soundNumber: 71),
]),
Positioned(
left: 0.0,
right: 0.0,
bottom: 50.0,
top: 0.0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(width: keyWidth),
buildBlackKey(color: Colors.black, soundNumber: 61),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 63),
Container(width: keyWidth2),
buildBlackKey(color: Colors.black, soundNumber: 66),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 68),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 70),
Container(width: keyWidth),
])),
]),
Stack(children: <Widget>[
Row(mainAxisSize: MainAxisSize.min, children: <Widget>[
buildWhiteKey(color: Colors.white, soundNumber: 48),
buildWhiteKey(color: Colors.white, soundNumber: 50),
buildWhiteKey(color: Colors.white, soundNumber: 52),
buildWhiteKey(color: Colors.white, soundNumber: 53),
buildWhiteKey(color: Colors.white, soundNumber: 55),
buildWhiteKey(color: Colors.white, soundNumber: 57),
buildWhiteKey(color: Colors.white, soundNumber: 59),
]),
Positioned(
left: 0.0,
right: 0.0,
bottom: 50.0,
top: 0.0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(width: keyWidth),
buildBlackKey(color: Colors.black, soundNumber: 49),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 51),
Container(width: keyWidth2),
buildBlackKey(color: Colors.black, soundNumber: 54),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 56),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 58),
Container(width: keyWidth),
])),
]),
Stack(children: <Widget>[
Row(mainAxisSize: MainAxisSize.min, children: <Widget>[
buildWhiteKey(color: Colors.white, soundNumber: 36),
buildWhiteKey(color: Colors.white, soundNumber: 38),
buildWhiteKey(color: Colors.white, soundNumber: 40),
buildWhiteKey(color: Colors.white, soundNumber: 41),
buildWhiteKey(color: Colors.white, soundNumber: 43),
buildWhiteKey(color: Colors.white, soundNumber: 45),
buildWhiteKey(color: Colors.white, soundNumber: 47),
]),
Positioned(
left: 0.0,
right: 0.0,
bottom: 50.0,
top: 0.0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(width: keyWidth),
buildBlackKey(color: Colors.black, soundNumber: 37),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 39),
Container(width: keyWidth2),
buildBlackKey(color: Colors.black, soundNumber: 42),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 44),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 46),
Container(width: keyWidth),
])),
]),
Stack(children: <Widget>[
Row(mainAxisSize: MainAxisSize.min, children: <Widget>[
buildWhiteKey(color: Colors.white, soundNumber: 24),
buildWhiteKey(color: Colors.white, soundNumber: 26),
buildWhiteKey(color: Colors.white, soundNumber: 28),
buildWhiteKey(color: Colors.white, soundNumber: 29),
buildWhiteKey(color: Colors.white, soundNumber: 31),
buildWhiteKey(color: Colors.white, soundNumber: 33),
buildWhiteKey(color: Colors.white, soundNumber: 35),
]),
Positioned(
left: 0.0,
right: 0.0,
bottom: 50.0,
top: 0.0,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(width: keyWidth),
buildBlackKey(color: Colors.black, soundNumber: 25),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 27),
Container(width: keyWidth2),
buildBlackKey(color: Colors.black, soundNumber: 30),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 32),
Container(width: keyWidth1),
buildBlackKey(color: Colors.black, soundNumber: 34),
Container(width: keyWidth),
])),
]),
],
),
),
),
);
}