Component

RatingScale

Flutter implementation of the RatingScale component.

Usage

dart
import 'package:refraction_ui/refraction_ui.dart';

class MyRatingScaleExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return RatingScale(
      // Add props here
    );
  }
}