checklist_rating

Creator: coderz1093

Last updated:

0 purchases

checklist_rating Image
checklist_rating Images

Languages

Categories

Add to Cart

Description:

checklist rating

Checklist Rating #
A Flutter package that provides a customizable checklist rating widget.
Installation #
Add checklist_rating to your pubspec.yaml dependencies:
dependencies:
checklist_rating: ^0.0.7
copied to clipboard
Then run:
flutter pub get
copied to clipboard
Usage #
To use the ChecklistSetRating widget, you first need to import the package:
import 'package:checklist_rating/checklist_rating.dart';
copied to clipboard
Here's an example of how you can integrate ChecklistSetRating into your Flutter app:
void main() {
runApp(const MyApp());
}

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

@override
State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
int rating = 0;
bool isChecked = false;

// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Checklist Rating Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: Scaffold(
body: Center(
child: Padding(
padding: const EdgeInsets.all(20.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ChecklistRating.custom(
titleChekbox: "Sample Checklist",
onCheckboxChanged: (value) {
// Handle set checklist here
setState(() {
isChecked = value ?? false;
});
},
setRating: rating,
setChecked: isChecked,
maxRatings: 5,
onRatingChecked: (rating) {
// Handle rating changes here
setState(() {
this.rating = rating;
});
},
),
],
),
),
),
),
);
}
}

copied to clipboard
Example how to use checklist_rating #
To use the ChecklistSetRating widget, you first need to import the package:
https://github.com/nunutech40/checklist_rating/assets/49187517/3ae6730f-13db-4f70-bc9c-70b9abecbb3d

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.