Giga Push (it is 1:30 am and I am tired)

Backend Structure implemented

All Ratings will be pulled and validated

Pop Up notfies user about all his ratings

If confirmed, data will be send to the supabase server (if any data was found)

No comments were made, who else needs to read this?
This commit is contained in:
Ali
2024-11-29 01:36:46 +01:00
parent ba79191a78
commit 60eb2785ee
9 changed files with 522 additions and 51 deletions
+4 -4
View File
@@ -63,10 +63,10 @@ class PageSpezielleErnaehrung extends StatelessWidget {
return RatingStars(
onRate: (value) {
spezielleErnaehrungProvider
.setRatingSitzmoeglichkeit(value);
.setRatingFrage1(value);
},
initRating: spezielleErnaehrungProvider
.ratingSitzmoeglichkeit,
.frage1,
);
},
)
@@ -85,10 +85,10 @@ class PageSpezielleErnaehrung extends StatelessWidget {
return RatingStars(
onRate: (value) {
spezielleErnaehrungProvider
.setRatingKeineAhnung(value);
.setRatingFrage2(value);
},
initRating:
spezielleErnaehrungProvider.ratingKeineAhnung,
spezielleErnaehrungProvider.frage2,
);
},
),