tappable 2.0.1 copy "tappable: ^2.0.1" to clipboard
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 [...]

example/lib/main.dart

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(),
    );
  }
}
2
likes
150
points
9
downloads

Publisher

unverified uploader

Weekly Downloads

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 mechanics for rich interactions.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on tappable