shiba_starts_review 0.0.1 copy "shiba_starts_review: ^0.0.1" to clipboard
shiba_starts_review: ^0.0.1 copied to clipboard

A flutter widget for stars review.

example/lib/main.dart

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

void main() {
  runApp(const MyApp());
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const HomePage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      body: SizedBox(
        height: double.infinity,
        width: double.infinity,
        child: ShibaStartsReview(
          rating: 1.5,
          size: 50,
          color: Colors.red,
        ),
      ),
    );
  }
}
1
likes
140
points
7
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter widget for stars review.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on shiba_starts_review