BandoLero
ElevatedButton ile bunu yapamazsın ancak GestureDetector ile yapabilirsin. GestureDetector ile hemen her olayı yakalayabilirsin. Burada onTapDown ile counter artırıp timer ile 500ms’de 1 artırmasını sağladım. onTapUp olayında yani tıklamayı bitirince timer nesnesini cancel ettim. umarım işini görür.
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
late Timer t;
void _incrementCounter() {
setState(() {
_counter++;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'Counter',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
),
GestureDetector(
child: Container(
margin: const EdgeInsets.all(17.0),
padding: const EdgeInsets.all(5.0),
decoration: BoxDecoration(
border: Border.all(color: Colors.blueAccent),
color: Colors.blueAccent),
child: const Text(
'Test Button',
style: TextStyle(color: Colors.white),
),
),
onTapDown: (details) {
_incrementCounter();
t = Timer.periodic(const Duration(milliseconds: 500), (timer) {
_incrementCounter();
});
},
onTapUp: (details) {
t.cancel();
},
),
],
),
),
);
}
}