Guest User

Untitled

a guest
Jan 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. SizedBox(height: 10),
  2. RaisedButton(
  3. onPressed: () {
  4. print("click");
  5. },
  6. onHighlightChanged: (isHigh) {
  7. print("onHighlightChanged.isHigh = $isHigh");
  8. },
  9. child: Text(
  10. "Click Hightlight~~~",
  11. style: TextStyle(color: BLUE_DEEP, fontSize: 40),
  12. ),
  13. ),
Add Comment
Please, Sign In to add comment