Flutter评分功能插件rating_widget的使用
Flutter评分功能插件rating_widget的使用
简介
rating_widget
是一个简单且可自定义的 Flutter 评分小部件包。它允许开发者轻松地在应用中实现评分功能。
使用方法
添加依赖
首先,在 pubspec.yaml
文件中添加 rating_widget
作为依赖:
dependencies:
flutter:
sdk: flutter
rating_widget:
然后运行以下命令以更新依赖项:
flutter pub get
导入并集成到项目中
在 Dart 文件中导入 rating_widget
并将其添加到应用中:
import 'package:flutter/material.dart';
import 'package:rating_widget/rating_widget.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
[@override](/user/override)
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Rating Widget',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'Flutter Rating Widget'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key? key, this.title}) : super(key: key);
final String? title;
[@override](/user/override)
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _horizontalStar = 0; // 水平评分值
int _verticalSstar = 0; // 垂直评分值
[@override](/user/override)
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title!),
),
body: Column(
children: [
// 水平评分条
Rating(
rating: 6, // 初始评分为6
onRatingSelected: (value) {
setState(() {
_horizontalStar = value!;
});
},
),
const SizedBox(height: 10), // 空白间距
Text("$_horizontalStar"), // 显示当前评分
const SizedBox(height: 50),
// 垂直评分条(带不同图标和颜色)
Rating(
rating: 8, // 初始评分为8
onRatingSelected: (value) {
setState(() {
_verticalSstar = value!;
});
},
horizontal: false, // 设置为垂直方向
selectedColor: Colors.red, // 选中状态的颜色
unSelectedColor: Colors.blue, // 未选中状态的颜色
selectedIcon: Icons.category_sharp, // 选中状态的图标
unSelectedIcon: Icons.category_outlined, // 未选中状态的图标
),
const SizedBox(height: 10),
Text("$_verticalSstar"), // 显示当前评分
],
),
);
}
}
更多关于Flutter评分功能插件rating_widget的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html
1 回复
更多关于Flutter评分功能插件rating_widget的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html
rating_widget
是一个用于在 Flutter 应用中实现评分功能的插件。它提供了一个简单易用的评分组件,允许用户通过点击星星或其他图标来评分。以下是使用 rating_widget
插件的基本步骤和示例代码。
1. 添加依赖
首先,你需要在 pubspec.yaml
文件中添加 rating_widget
插件的依赖。
dependencies:
flutter:
sdk: flutter
rating_widget: ^1.0.0 # 请检查最新版本
然后运行 flutter pub get
来获取依赖。
2. 导入包
在你的 Dart 文件中导入 rating_widget
包。
import 'package:rating_widget/rating_widget.dart';
3. 使用 RatingWidget
RatingWidget
是一个可自定义的评分组件。你可以指定评分的最小值、最大值、初始值、图标大小、颜色等。
以下是一个简单的示例,展示如何使用 RatingWidget
:
import 'package:flutter/material.dart';
import 'package:rating_widget/rating_widget.dart';
class RatingExample extends StatefulWidget {
[@override](/user/override)
_RatingExampleState createState() => _RatingExampleState();
}
class _RatingExampleState extends State<RatingExample> {
double _rating = 0.0;
[@override](/user/override)
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Rating Widget Example'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
RatingWidget(
rating: _rating,
onRatingChanged: (double rating) {
setState(() {
_rating = rating;
});
},
size: 40.0,
maxRating: 5.0,
filledIcon: Icons.star,
halfFilledIcon: Icons.star_half,
emptyIcon: Icons.star_border,
filledColor: Colors.amber,
halfFilledColor: Colors.amber,
emptyColor: Colors.grey,
),
SizedBox(height: 20),
Text(
'Rating: $_rating',
style: TextStyle(fontSize: 20),
),
],
),
),
);
}
}
void main() {
runApp(MaterialApp(
home: RatingExample(),
));
}