This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() => runApp(const MyApp()); | |
| class MyApp extends StatelessWidget { | |
| const MyApp({super.key}); | |
| static const String _title = 'Flutter Code Sample'; | |
| @override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "level": 1, | |
| "code": 1, | |
| "name": "Aveiro" | |
| }, | |
| { | |
| "level": 2, | |
| "code": 101, | |
| "name": "Águeda" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Learn the basics of Storekit with this example. | |
| Before we can do anything in our app, we need to set up iTunesConnect! This process can be a little painful, but I will | |
| guide you through it so you don't have to figure it out on your own. | |
| Follow these steps: | |
| 1) Log in to your Apple Developer account at https://itunesconnect.apple.com/ | |
| 2) Click "Manage Your Applications". |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var lox = require('lib/lox'); | |
| lox.start(); | |
| lox.exampleOfSendWithoutCallback(); | |
| lox.exampleOfSendWithCallback(function(result) { | |
| console.log('Got data back! ' + result); | |
| }); |