2022-10-18 15:49:09 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
2023-05-12 20:02:04 +00:00
|
|
|
import 'package:stackwallet/models/isar/stack_theme.dart';
|
2023-05-09 21:57:40 +00:00
|
|
|
import 'package:stackwallet/themes/stack_colors.dart';
|
2022-10-18 15:49:09 +00:00
|
|
|
import 'package:stackwallet/widgets/progress_bar.dart';
|
|
|
|
|
2023-05-12 20:02:04 +00:00
|
|
|
import '../sample_data/theme_json.dart';
|
|
|
|
|
2022-10-18 15:49:09 +00:00
|
|
|
void main() {
|
|
|
|
testWidgets("Widget build", (widgetTester) async {
|
2023-05-08 17:59:00 +00:00
|
|
|
final theme = StackTheme.fromJson(
|
2023-05-12 20:02:04 +00:00
|
|
|
json: lightThemeJsonMap,
|
2023-05-08 17:59:00 +00:00
|
|
|
);
|
2022-10-18 15:49:09 +00:00
|
|
|
await widgetTester.pumpWidget(
|
|
|
|
MaterialApp(
|
|
|
|
theme: ThemeData(
|
|
|
|
extensions: [
|
2023-05-08 17:59:00 +00:00
|
|
|
StackColors.fromStackColorTheme(theme),
|
2022-10-18 15:49:09 +00:00
|
|
|
],
|
|
|
|
),
|
|
|
|
home: Material(
|
|
|
|
child: ProgressBar(
|
|
|
|
width: 20,
|
|
|
|
height: 10,
|
2023-05-08 17:59:00 +00:00
|
|
|
fillColor: StackColors.fromStackColorTheme(theme).accentColorRed,
|
|
|
|
backgroundColor:
|
|
|
|
StackColors.fromStackColorTheme(theme).accentColorYellow,
|
2022-10-18 15:49:09 +00:00
|
|
|
percent: 30),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(find.byType(ProgressBar), findsOneWidget);
|
|
|
|
});
|
|
|
|
}
|