Skip to content

Instantly share code, notes, and snippets.

@MBeliou
Created January 20, 2021 11:47
Show Gist options
  • Save MBeliou/0a8409d14bc5a13ce913e27ae1421c9f to your computer and use it in GitHub Desktop.
Save MBeliou/0a8409d14bc5a13ce913e27ae1421c9f to your computer and use it in GitHub Desktop.
import 'dart:html';
import 'package:flutter/material.dart';
void main() {
window.document.onContextMenu.listen((evt) => evt.preventDefault());
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Click Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
void _decrementCounter() {
setState(() {
_counter--;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'The current count is:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
),
SizedBox(height: 48.0),
GestureDetector(
onTap: () => _incrementCounter(),
onLongPress: () => _decrementCounter(),
onSecondaryTap: () => _decrementCounter(),
child: Container(
height: 60,
width: 200,
color: Colors.grey.shade300,
child: Center(
child: Text(
"Click left to increment\nClick right to decrement",
),
),
),
),
],
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment