merge develop into components

- modify onboarding screen to use step indicator component
This commit is contained in:
2025-12-04 09:43:05 +01:00
parent ae0156f3e6
commit 1b0517344e
5 changed files with 22 additions and 51 deletions

View File

@@ -7,7 +7,7 @@ void main() {
themePackages();
testGoldens('Step Indicator', (tester) async {
final widget = (int step)=>StepIndicator(max: 3, current: step, color: Colors.blueAccent);
final widget = (int step)=>StepIndicator(total: 3, current: step, color: Colors.blueAccent);
final builder = GoldenBuilder.column()
..addScenario('step -1', widget(-1))
..addScenario('step 0', widget(0))