You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/ui/app/upgrade_dialog.dart
+18-15
Original file line number
Diff line number
Diff line change
@@ -126,22 +126,25 @@ class _UpgradeDialogState extends State<UpgradeDialog> {
126
126
finalList<Widget> stack =<Widget>[];
127
127
if (_queryProductError ==null) {
128
128
stack.add(
129
-
Scrollbar(
130
-
thumbVisibility:true,
131
-
controller: _scrollController,
132
-
child:ListView(
129
+
Container(
130
+
width:double.maxFinite,
131
+
child:Scrollbar(
132
+
thumbVisibility:true,
133
133
controller: _scrollController,
134
-
children:<Widget>[
135
-
if (Platform.isIOS)
136
-
Padding(
137
-
padding:constEdgeInsets.only(bottom:16),
138
-
child:Text(
139
-
'Payment will be charged to iTunes Account at confirmation of purchase. Subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period. Account will be charged for renewal within 24-hours prior to the end of the current period, and identify the cost of the renewal. Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user\'s Account Settings after purchase.',
140
-
style:TextStyle(fontSize:12, color:Colors.grey),
134
+
child:ListView(
135
+
controller: _scrollController,
136
+
children:<Widget>[
137
+
if (Platform.isIOS)
138
+
Padding(
139
+
padding:constEdgeInsets.only(bottom:16),
140
+
child:Text(
141
+
'Payment will be charged to iTunes Account at confirmation of purchase. Subscription automatically renews unless auto-renew is turned off at least 24-hours before the end of the current period. Account will be charged for renewal within 24-hours prior to the end of the current period, and identify the cost of the renewal. Subscriptions may be managed by the user and auto-renewal may be turned off by going to the user\'s Account Settings after purchase.',
142
+
style:TextStyle(fontSize:12, color:Colors.grey),
143
+
),
141
144
),
142
-
),
143
-
_buildProductList(),
144
-
],
145
+
_buildProductList(),
146
+
],
147
+
),
145
148
),
146
149
),
147
150
);
@@ -292,7 +295,7 @@ class _UpgradeDialogState extends State<UpgradeDialog> {
0 commit comments