😇

Flutter primary onPrimary deprecated

2022/10/27に公開

primary -> backgroundColor
onPrimary -> foregroundColor
に変更

before
      style: ElevatedButton.styleFrom(
	...
	primary: Colors.white,
	onPrimary: Colors.grey,
	...
      ),
after
      style: ElevatedButton.styleFrom(
	...
	backgroundColor: Colors.white,
	foregroundColor: Colors.grey,
	...
      ),

Discussion