simple_animated_rating_bar 2.0.1 copy "simple_animated_rating_bar: ^2.0.1" to clipboard
simple_animated_rating_bar: ^2.0.1 copied to clipboard

A simple animated rating bar to help you implement a rating system in your app.

example/lib/main.dart

// ignore_for_file: prefer_const_constructors, prefer_const_literals_to_create_immutables

import 'package:example/pages/default_example.dart';
import 'package:example/pages/first_example.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(
    const MaterialApp(
      home: MyApp(),
    ),
  );
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      // backgroundColor: Color(0xFFFE5D6C),
      // backgroundColor: Color.fromRGBO(161, 160, 255, 1),
      backgroundColor: Colors.blueGrey[600],

      body: Column(
        mainAxisAlignment: MainAxisAlignment.spaceEvenly,
        children: [
          // StevenUniverseExample(
          //   animationType: ARBAnimationType.shake,
          // ),
          FirstExample(),
          // MarioExample(),
          DefaultExample(),
        ],
      ),
    );
  }
}
11
likes
160
points
26
downloads

Publisher

unverified uploader

Weekly Downloads

A simple animated rating bar to help you implement a rating system in your app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on simple_animated_rating_bar