Go to file
Sambo Chea 39df2111f7 Fixed Text Formatter on dynamic to string 2021-05-28 15:24:05 +07:00
.github/workflows Add github actions to publish to pub.dev 2021-03-24 14:41:14 +07:00
bin Add configuration provider and simple provider functions 2021-03-24 13:24:40 +07:00
example Fixed and removed the example example_flutter_secure_storage_provider.dart 2021-05-14 17:05:16 +07:00
lib Fixed Text Formatter on dynamic to string 2021-05-28 15:24:05 +07:00
test Task: Add TextFormatter function to format the string with args 2021-05-14 16:57:36 +07:00
.env - Add mutable configuration provider 2021-03-24 16:39:10 +07:00
.gitignore Add configuration provider and simple provider functions 2021-03-24 13:24:40 +07:00
analysis_options.yaml Add configuration provider and simple provider functions 2021-03-24 13:24:40 +07:00
CHANGELOG.md Fixed Text Formatter on dynamic to string 2021-05-28 15:24:05 +07:00
LICENSE Create LICENSE 2021-03-24 14:47:16 +07:00
pubspec.lock Fixed test deps and upgrade to 1.0.1 2021-03-24 15:02:06 +07:00
pubspec.yaml Fixed Text Formatter on dynamic to string 2021-05-28 15:24:05 +07:00
README.md Task: Add async support and functions for configurable and add tests for async testing and updated the functions with default 2021-05-14 15:52:57 +07:00

Dart Configurable Environment

Pub

  • Allow to get property from env file
  • Cache property for runtime
  • Dotenv file support (use DotenvConfigurationProvider)
  • Support functions (getConfig, getConfigOrNull, hasConfigKey, setConfig)
  • Support nullsafety (dart 2.12.2+)
  • Custom configuration provider
  • Add Async functions support

Issue

  • Flutter app not support for dotenv (.env) when run on devices (because of runtime in device)

Resolution

  • Flutter app can be use persistence storage like SharedPreference or FlutterSecureStorage to implement the configuration provider

Example

import 'package:configurable/configurable.dart';
import 'package:configurable/dotenv_configuration_provider.dart';
import 'package:configurable/simple_configuration_provider.dart';
import 'package:configurable/system_config.dart';

void main() {
  var key = 'app.name';
  var value = 'CUBETIQ Solution';

  /// in-memory provider (built-in)
  var simpleProvider = SimpleConfigurationProvider();
  SystemConfig.setProvider(simpleProvider);
  var result1 = SystemConfig.getOrNull(key, defaultValue: value);

  /// output: CUBETIQ Solution
  print(result1);

  /// get config functions
  getConfig('app.title', defaultValue: 'My App Title!');
  getConfigOrNull('app.null.ignore');

  /// set config functions
  /// support only mutable configuration provider
  setConfig('my.app', 'Hello My App');

  /// dotenv provider (from file .env)
  var dotenvProvider = DotenvConfigurationProvider();
  SystemConfig.setProvider(dotenvProvider);
  var result2 = SystemConfig.getOrNull('HOME');

  /// output: user's home directory
  print(result2);
}

Implement custom configuration provider

class MyCustomProvider implements ConfigurationProvider {
  Map<String, String?> configDataSet = {};

  @override
  bool containsKey(String key) {
    return configDataSet.containsKey(key);
  }

  @override
  String? getOrNull(String key, {String? defaultValue}) {
    var value = configDataSet[key];

    if (value == null) {
      return defaultValue;
    }

    return value;
  }
}

Contributors

License

MIT License

Copyright (c) 2021 CUBETIQ Solution

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.