-
-
Notifications
You must be signed in to change notification settings - Fork 324
Open
Description
Describe the bug
When the SpinKit is wrapped on a GestureDetector, the onTap is only triggered when the tap happens in the visible area of the SpinKit. For instance, the blank area in the center of the SpinKitCircle will not trigger the onTap.
SpinKit name
SpinKitCircle
Reproducer
lib/main.dart
import 'package:flutter_spinkit/flutter_spinkit.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'You have pushed the button this many times:',
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
const SizedBox(height: 30),
GestureDetector(
onTap: _incrementCounter,
child: const SpinKitCircle(
color: Colors.deepPurple,
size: 256,
),
),
],
),
),
);
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels