We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3958f5b commit 020e5c3Copy full SHA for 020e5c3
example/lib/storybook/stories/help_widget_story.dart
@@ -13,6 +13,8 @@ const testWidth = 420.0;
13
/// helpWidget alignment
14
const _alignment = Alignment.bottomRight;
15
16
+const _listLength = 100;
17
+
18
/// Definition of using 4 different widget inherited from [HelpWidget].
19
WidgetbookComponent get helpWidgetStory => WidgetbookComponent(
20
name: 'HelpWidget',
@@ -32,7 +34,7 @@ WidgetbookComponent get helpWidgetStory => WidgetbookComponent(
32
34
overlayWidget: HorizontalHelpWidget(alignment: _alignment,),
33
35
child: ListView(
36
children: [
- for (var i = 0; i < 100; i++)
37
+ for (var i = 0; i < _listLength; i++)
38
Text(
39
i.toString(),
40
style: const TextStyle(color: Colors.white,),
0 commit comments