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 29b6274 commit dcc6d30Copy full SHA for dcc6d30
example/lib/main.dart
@@ -53,15 +53,15 @@ class _MyStoryBookAppState extends State<MyStoryBookApp> {
53
layoutID: "0R0PYsM6kNpkBMr93LS7",
54
data: licenseData,
55
functions: {
56
- 'onFreeSelected': CodelesslyFunction((ref) {
+ 'onFreeSelected': CodelesslyFunction((context, ref) {
57
licenseData['license'] = 'FREE';
58
setState(() {});
59
}),
60
- 'onProSelected': CodelesslyFunction((ref) {
+ 'onProSelected': CodelesslyFunction((context, ref) {
61
licenseData['license'] = 'PRO';
62
63
64
- 'onBusinessSelected': CodelesslyFunction((ref) {
+ 'onBusinessSelected': CodelesslyFunction((context, ref) {
65
licenseData['license'] = 'BUSINESS';
66
67
0 commit comments