flare_checkbox 2.0.0+1 copy "flare_checkbox: ^2.0.0+1" to clipboard
flare_checkbox: ^2.0.0+1 copied to clipboard

Checkbox widget with two or three state animation with a Flare animation of your choice

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: FlareCheckbox(
          onChanged: print,
          animation: 'assets/checkbox.flr',
          value: true,
        ),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}
4
likes
80
pub points
52%
popularity

Publisher

verified publisherjaumard.com

Checkbox widget with two or three state animation with a Flare animation of your choice

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (LICENSE)

Dependencies

flare_flutter, flutter

More

Packages that depend on flare_checkbox