Skip to content

Instantly share code, notes, and snippets.

@yojkim
Created January 12, 2021 13:33
Show Gist options
  • Save yojkim/6b5387a1db396120797b26de5e79eaeb to your computer and use it in GitHub Desktop.
Save yojkim/6b5387a1db396120797b26de5e79eaeb to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
Widget build(BuildContext context) {
return GestureDetector(onTap: () => print('tapped'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment