Created
January 28, 2020 13:37
-
-
Save jediyeti/e68448ee4178473c7d983510a9711430 to your computer and use it in GitHub Desktop.
Handling gestures
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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