728x90
반응형
RawMaterialButton(
onPressed: () => {},
onHighlightChanged: (value) {
setState(() {
backgroundColor = value ? Colors.amber : Colors.redAccent;
_highlight = value;
});
},
elevation: _highlight ? 10.0 : 1.0,
constraints: BoxConstraints.tightFor(
width: 100.0, // double? width
height: 100.0 // double? height
),
fillColor: backgroundColor,
shape: _pentagonBorder(),
)
728x90
728x90
'Flutter' 카테고리의 다른 글
'File.create' has fewer named arguments than those of overridden method 'File.create' (0) | 2024.01.09 |
---|---|
ShapeBorder -> pentagon (0) | 2024.01.07 |
BoxConstraints.tightFor (0) | 2024.01.07 |
안드로이드스튜디오 PlatformException(null-error, Host platform returned null value for non-null return value., null, null) (0) | 2024.01.07 |
안드로이드 Apps targeting Android 12 and higher 에러 (0) | 2024.01.01 |
댓글