Skip to content

Instantly share code, notes, and snippets.

View shihaohong's full-sized avatar

Shi-Hao Hong shihaohong

View GitHub Profile
@shihaohong
shihaohong / main.dart
Last active March 20, 2020 21:49
tapdown magic
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@shihaohong
shihaohong / main.dart
Created March 18, 2020 17:08
Overlapping InkWells with Stack
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override