flutter_touch_scale 1.0.0+1 copy "flutter_touch_scale: ^1.0.0+1" to clipboard
flutter_touch_scale: ^1.0.0+1 copied to clipboard

This Flutter package delivers clear visual feedback through scale animations on user touch interactions.

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_touch_scale/flutter_touch_scale.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: Center(
          child: TouchScale(
            onPress: () => print("Pressed!"),
            child: Text("Hello, World!"),
          ),
        ),
      ),
    );
  }
}
3
likes
0
points
151
downloads

Publisher

verified publisherttangkong.dev

Weekly Downloads

This Flutter package delivers clear visual feedback through scale animations on user touch interactions.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_touch_scale