All Projects → Ephenodrom → Flutter-Global-Config

Ephenodrom / Flutter-Global-Config

Licence: MIT License
A flutter package for managing different configurations and making them available everythere inside the app.

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Flutter-Global-Config

laravel-conditional-providers
THIS PACKAGE HAS BEEN DEPRECATED — Load Laravel service providers and facades based on the current environment.
Stars: ✭ 26 (-70.45%)
Mutual labels:  configuration
rails-settings-cached
Global settings for your Rails application.
Stars: ✭ 940 (+968.18%)
Mutual labels:  configuration
harg
Haskell program configuration using higher kinded data
Stars: ✭ 23 (-73.86%)
Mutual labels:  configuration
cue
The new home of the CUE language! Validate and define text-based and dynamic configuration
Stars: ✭ 2,466 (+2702.27%)
Mutual labels:  configuration
dotfiles
My personal app/env configs and dotfiles.
Stars: ✭ 27 (-69.32%)
Mutual labels:  configuration
dotfiles
Jaseem's dotfiles
Stars: ✭ 14 (-84.09%)
Mutual labels:  configuration
RDMnet
Implementation of ANSI E1.33
Stars: ✭ 29 (-67.05%)
Mutual labels:  configuration
ienv
Improved shell environment: sane dotfiles backed by my daily work optimized for solarized theme
Stars: ✭ 25 (-71.59%)
Mutual labels:  configuration
goodconf
Transparently load variables from environment or JSON/YAML file.
Stars: ✭ 80 (-9.09%)
Mutual labels:  configuration
config-o-matic
🍷 Configure Slackware installs in no time with config-o-matic!
Stars: ✭ 16 (-81.82%)
Mutual labels:  configuration
puter
Setting up a computer is annoying so let's automate it.
Stars: ✭ 13 (-85.23%)
Mutual labels:  configuration
eslint-define-config
Provide a defineConfig function for .eslintrc.js files
Stars: ✭ 61 (-30.68%)
Mutual labels:  configuration
awesome
Configs for awesomeWM
Stars: ✭ 42 (-52.27%)
Mutual labels:  configuration
cookiecutter-django-herokuapp
A cookiecutter template for creating Django 1.7+ / Python 3 projects quickly, thought optimized for Heroku in the meantime.
Stars: ✭ 20 (-77.27%)
Mutual labels:  configuration
requireg
Resolve and require local & global modules in node.js like a boss
Stars: ✭ 45 (-48.86%)
Mutual labels:  global
Manuals-and-Tutorials
Manuals about everything I work with
Stars: ✭ 15 (-82.95%)
Mutual labels:  configuration
.github
Default configuration for @TheAlgorithms repos
Stars: ✭ 57 (-35.23%)
Mutual labels:  configuration
pingmote
Cross-platform Python global emote picker to quickly insert custom images/gifs
Stars: ✭ 24 (-72.73%)
Mutual labels:  global
dhall-scala
dhall-scala is a Scala library for consuming dhall configuration files from Scala programming language.
Stars: ✭ 39 (-55.68%)
Mutual labels:  configuration
yaask
Make your yaml configurable with interactive configurations!
Stars: ✭ 15 (-82.95%)
Mutual labels:  configuration

Flutter Global Configuration

A flutter package for managing different configurations by merging them together and making them available everythere inside the app via a singleton.

Table of Contents

  1. Preamble
  2. Install
  3. Import
  4. Loading configuration
  5. Using the configuration in your app
  6. Overriding configuration
  7. Full Example
  8. Changelog
  9. Copyright and license

Preamble

This package is also part of the EZ Flutter Framework.

Install

pubspec.yaml

Update pubspec.yaml and add the following line to your dependencies.

dependencies:
  global_configuration: ^1.6.0

Or use the nullsafety preview version.

dependencies:
  global_configuration: ^2.0.0-nullsafety.1

Import

Import the package with :

import 'package:global_configuration/global_configuration.dart';

Loading configuration

There are many ways where you can store your configuration files and load them.

Load from asset

Creating a configuration file inside assets/cfg folder

Create a .json file and place it under assets/cfg/ Example filename: assets/cfg/app_settings.json

{
  "key1": "value1",
  "key2": "value2"
}

Remember to update your pubspec.yaml file, so the config can be loaded from the assets directory! The config files must be placed under the assets/cfg/ directory.

flutter:
 assets:
  - assets/cfg/

Load configuration from assets at app start

import 'package:flutter/material.dart';
import 'package:global_configuration/global_configuration.dart';

void main() async{
  await GlobalConfiguration().loadFromAsset("app_settings");
  runApp(MyApp());
}
class MyApp extends StatelessWidget {
  ...
}

Load from path

Creating a configuration file anywhere

Create a file anywhere inside your app.

Load configuration from path at app start

import 'package:flutter/material.dart';
import 'package:global_configuration/global_configuration.dart';

void main() async {
  await GlobalConfiguration().loadFromPath("/path/file.json");
  runApp(MyApp());
}
class MyApp extends StatelessWidget {
  ...
}

Load from path into key

The same as loadFromPath, but the config is added under the given key.

import 'package:flutter/material.dart';
import 'package:global_configuration/global_configuration.dart';

void main() async {
  await GlobalConfiguration().loadFromPathIntoKey("/path/file.json", "env_settings");
  runApp(MyApp());
}
class MyApp extends StatelessWidget {
  ...
}

Load from map

Creating a configuration inside .dart file

Create a dart file which includes your configuration and import it in your main file. Example filename: /config/app_settings.config.dart

final Map<String, String> appSettings = {
  "key1": "value1",
  "key2": "value2"
};

Load configuration from map at app start

import 'package:flutter/material.dart';
import 'package:global_configuration/global_configuration.dart';
import 'config/app_settings.config.dart';

void main() async {
  GlobalConfiguration().loadFromMap(appSettings);
  runApp(MyApp());
}
class MyApp extends StatelessWidget {
  ...
}

Load from url

It is possible to load any json configuration file from a url. Use the method loadFromUrl to load the config via GET request. Please consider using a try / catch. This method will throw an exception if the status code of the GET request is not 200.

The method also accepts query parameters and headers! The header "Accept: application/json" is always included.

Load configuration from url at app start

import 'package:flutter/material.dart';
import 'package:global_configuration/global_configuration.dart';

void main() async{
  try{
    await GlobalConfiguration().loadFromUrl("http://urlToMyConfig.com");
  }catch(e){
    // something went wrong while fetching the config from the url ... do something
  }
  runApp(MyApp());
}
class MyApp extends StatelessWidget {
  ...
}

Using the configuration in your app

Instatiate the GlobalConfiguration class and call any get($key) method.

import 'package:flutter/material.dart';
import 'package:global_configuration/global_configuration.dart';

class CustomWidget extends StatelessWidget {

    CustomWiget(){
        // Access the config in the constructor
        print(GlobalConfiguration().getString("key1")); // prints value1
    }

    @override
     Widget build(BuildContext context) {
        // Access the config in the build method
        return Text(GlobalConfiguration().getString("key2")); // prints value2
     }
}

Overriding configuration

Sometimes it is necessary to override data in the configuration. This can be done by the updateValue method. This method makes a check for the given type of the value and then performs an update the configuration map.

  Map<String, String> appSettings = {
    "key1": "value1",
    "key2": 1
  };
  GlobalConfiguration().loadFromMap(appSettings); // loading the configuration
  print(GlobalConfiguration().getString("key1")); // output : value1
  print(GlobalConfiguration().getString("key2")); // output : 1
  GlobalConfiguration().updateValue("key1", "value2"); // update the value for key1
  GlobalConfiguration().updateValue("key2", 2); // update the value for key2
  print(GlobalConfiguration().getString("key1")); // output : value2
  print(GlobalConfiguration().getString("key2")); // output : 2

Full example

You can find a full example in the example folder.

Changelog

For a detailed changelog, see the CHANGELOG.md file

Copyright and license

MIT License

Copyright (c) 2019 Ephenodrom

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].