1name: ejdb2_example 2description: Demonstrates how to use the ejdb2 plugin. 3publish_to: 'none' 4 5environment: 6 sdk: ">=2.1.0 <3.0.0" 7 8dependencies: 9 flutter: 10 sdk: flutter 11 12 # The following adds the Cupertino Icons font to your application. 13 # Use with the CupertinoIcons class for iOS style icons. 14 cupertino_icons: ^0.1.2 15 16dev_dependencies: 17 flutter_driver: 18 sdk: flutter 19 test: any 20 21 ejdb2_flutter: 22 path: ../ 23 24# For information on the generic Dart part of this file, see the 25# following page: https://dart.dev/tools/pub/pubspec 26 27# The following section is specific to Flutter. 28flutter: 29 30 # The following line ensures that the Material Icons font is 31 # included with your application, so that you can use the icons in 32 # the material Icons class. 33 uses-material-design: true 34 35 # To add assets to your application, add an assets section, like this: 36 # assets: 37 # - images/a_dot_burr.jpeg 38 # - images/a_dot_ham.jpeg 39 40 # An image asset can refer to one or more resolution-specific "variants", see 41 # https://flutter.dev/assets-and-images/#resolution-aware. 42 43 # For details regarding adding assets from package dependencies, see 44 # https://flutter.dev/assets-and-images/#from-packages 45 46 # To add custom fonts to your application, add a fonts section here, 47 # in this "flutter" section. Each entry in this list should have a 48 # "family" key with the font family name, and a "fonts" key with a 49 # list giving the asset and other descriptors for the font. For 50 # example: 51 # fonts: 52 # - family: Schyler 53 # fonts: 54 # - asset: fonts/Schyler-Regular.ttf 55 # - asset: fonts/Schyler-Italic.ttf 56 # style: italic 57 # - family: Trajan Pro 58 # fonts: 59 # - asset: fonts/TrajanPro.ttf 60 # - asset: fonts/TrajanPro_Bold.ttf 61 # weight: 700 62 # 63 # For details regarding fonts from package dependencies, 64 # see https://flutter.dev/custom-fonts/#from-packages 65