flutter_touch_scale 1.3.0 copy "flutter_touch_scale: ^1.3.0" to clipboard
flutter_touch_scale: ^1.3.0 copied to clipboard

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

example/main.dart

import 'dart:developer';

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: () => log("Pressed!"),
            child: Text("Hello, World!"),
          ),
        ),
      ),
    );
  }
}
3
likes
150
points
233
downloads

Publisher

verified publisherttangkong.dev

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on flutter_touch_scale