Skip to content

Instantly share code, notes, and snippets.

@nb312
Created January 20, 2019 18:02
Show Gist options
  • Save nb312/8cbdecf27d837e7d721165ca0138defc to your computer and use it in GitHub Desktop.
Save nb312/8cbdecf27d837e7d721165ca0138defc to your computer and use it in GitHub Desktop.
06-raise-button-04-hightlight-example.dart
SizedBox(height: 10),
RaisedButton(
onPressed: () {
print("click");
},
onHighlightChanged: (isHigh) {
print("onHighlightChanged.isHigh = $isHigh");
},
child: Text(
"Click Hightlight~~~",
style: TextStyle(color: BLUE_DEEP, fontSize: 40),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment