Skip to content

Commit a53a635

Browse files
committed
rating component created
1 parent 63c3896 commit a53a635

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import 'package:flutter/material.dart';
2+
3+
class GFRating extends StatefulWidget {
4+
@override
5+
_GFRatingState createState() => _GFRatingState();
6+
}
7+
8+
class _GFRatingState extends State<GFRating> {
9+
@override
10+
Widget build(BuildContext context) {
11+
return Container(
12+
13+
);
14+
}
15+
}

0 commit comments

Comments
 (0)