rive_checkbox 0.1.0 copy "rive_checkbox: ^0.1.0" to clipboard
rive_checkbox: ^0.1.0 copied to clipboard

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

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:rive_checkbox/rive_checkbox.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(
      backgroundColor: Colors.grey,
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: RiveCheckbox(
          onChanged: print,
          animation: 'assets/checkbox.riv',
          useArtboardSize: true,
          value: true,
        ),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}
0
likes
110
pub points
0%
popularity

Publisher

verified publisherjaumard.com

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (LICENSE)

Dependencies

collection, flutter, rive

More

Packages that depend on rive_checkbox