tappable 2.0.1
tappable: ^2.0.1 copied to clipboard
Core tappable widgets for Flutter with pluggable tap mechanics. Provides Tappable and TappableContainer with support for Ripple, Scale, Press, Opacity, and RaisedEdge mechanics. Combine multiple mecha [...]
import 'package:flutter/material.dart';
import 'simple_examples_page.dart';
void main() {
runApp(const TappableExampleApp());
}
class TappableExampleApp extends StatelessWidget {
const TappableExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Tappable Examples',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
useMaterial3: true,
),
home: const SimpleExamplesPage(),
);
}
}