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 UIKit | |
| import Flutter | |
| @UIApplicationMain | |
| @objc class AppDelegate: FlutterAppDelegate, MyViewDelegate { | |
| var flutterViewController: FlutterViewController? | |
| var flutterResult: FlutterResult? | |
| override func application( | |
| _ application: UIApplication, |
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
| // MIT @najeira | |
| import 'package:flutter/gestures.dart'; | |
| import 'package:flutter/material.dart'; | |
| typedef GestureRecognizerWidgetBuilder = Widget Function( | |
| BuildContext, Map<String, TapGestureRecognizer>); | |
| class GestureRecognizerBuilder extends StatefulWidget { | |
| const GestureRecognizerBuilder({ |
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
| { | |
| "components": { | |
| "schemas": { | |
| "AbilityResource": { | |
| "description": "Ability Resource", | |
| "enum": [ | |
| "MANA", | |
| "ENERGY", | |
| "NONE", | |
| "SHIELD", |
OlderNewer