Skip to content

Commit

Permalink
eula
Browse files Browse the repository at this point in the history
  • Loading branch information
LezdCS committed Oct 8, 2024
1 parent d50f5c4 commit 06a06af
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
17 changes: 15 additions & 2 deletions ios/Configuration.storekit
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
{
"appPolicies" : {
"eula" : "",
"policies" : [
{
"locale" : "en_US",
"policyText" : "",
"policyURL" : ""
}
]
},
"identifier" : "B164A5BC",
"nonRenewingSubscriptions" : [

Expand Down Expand Up @@ -92,13 +102,16 @@
"recurringSubscriptionPeriod" : "P1M",
"referenceName" : "IRL Link premium",
"subscriptionGroupID" : "21529732",
"type" : "RecurringSubscription"
"type" : "RecurringSubscription",
"winbackOffers" : [

]
}
]
}
],
"version" : {
"major" : 3,
"major" : 4,
"minor" : 0
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ Widget _addDialog(context, SettingsViewController controller) {
key: controller.addBrowserTitleKey,
child: TextFormField(
controller: controller.addBrowserTitleController,
textInputAction: TextInputAction.send,
textInputAction: TextInputAction.next,
maxLines: 1,
validator: (value) {
if (value == null || value.isEmpty) {
Expand All @@ -237,7 +237,7 @@ Widget _addDialog(context, SettingsViewController controller) {
key: controller.addBrowserUrlKey,
child: TextFormField(
controller: controller.addBrowserUrlController,
textInputAction: TextInputAction.send,
textInputAction: TextInputAction.done,
maxLines: 1,
textCapitalization: TextCapitalization.none,
validator: (value) {
Expand Down

0 comments on commit 06a06af

Please sign in to comment.