swipe_to_achieve 0.0.4 copy "swipe_to_achieve: ^0.0.4" to clipboard
swipe_to_achieve: ^0.0.4 copied to clipboard

Simple swipe button to do something.

example/lib/main.dart

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

void main() => runApp(const MyApp());

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Swipe to Achieve',
      home: MyHomePage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: SwipeToAchieve(
          width: 150.0,
          title: 'Swipe to achievement',
          textStyle: const TextStyle(
            fontSize: 15.0,
            fontWeight: FontWeight.bold,
          ),
          achievedBackgroundColor: Colors.amber,
          startBackgroundColor: Colors.cyan,
          startCircleColor: Colors.redAccent,
          circleRadius: 100.0,
          achievedCircleColor: Colors.greenAccent,
          onWhenEnd: (v) => print('Uzbekistan'),
        ),
      ),
    );
  }
}
2
likes
140
pub points
15%
popularity

Publisher

unverified uploader

Simple swipe button to do something.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on swipe_to_achieve