Skip to content

Instantly share code, notes, and snippets.

@jediyeti
Created January 28, 2020 13:37
Show Gist options
  • Save jediyeti/e68448ee4178473c7d983510a9711430 to your computer and use it in GitHub Desktop.
Save jediyeti/e68448ee4178473c7d983510a9711430 to your computer and use it in GitHub Desktop.
Handling gestures
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
title: 'Flutter Tutorial',
themeMode: ThemeMode.light,
home: TutorialHome(),
));
}
class TutorialHome extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(mainAxisAlignment: MainAxisAlignment.center, children: [
MyGestureDetectorButton(),
SizedBox(height: 32),
MyInkWellButton(),
]),
),
);
}
}
class MyGestureDetectorButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () {
print('MyGestureDetectorButton was tapped!');
},
child: Container(
alignment: Alignment.center,
height: 44.0,
width: 120,
padding: const EdgeInsets.all(4.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5.0),
color: Colors.lightGreen[500],
),
child: Text('Click'),
),
);
}
}
class MyInkWellButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Material(
borderRadius: BorderRadius.circular(5.0),
color: Colors.lightGreen,
child: InkWell(
splashColor: Colors.red,
onTap: () {
print('MyInkWellButton was tapped!');
},
child: Container(
alignment: Alignment.center,
height: 44.0,
width: 120,
padding: const EdgeInsets.all(4.0),
child: Text('Click'),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment