You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
5 months ago | |
---|---|---|
.github/workflows | 5 months ago | |
example | 5 months ago | |
lib | 5 months ago | |
test | 2 years ago | |
.drone.yml | 2 years ago | |
.gitignore | 2 years ago | |
CHANGELOG.md | 2 years ago | |
LICENSE | 2 years ago | |
README.md | 2 years ago | |
analysis_options.yaml | 2 years ago | |
lint.sh | 2 years ago | |
pubspec.yaml | 2 years ago |
README.md
CUBETIQ Dart Shared
A minimal dart functions, utils and extensions for CUBETIQ Developers.
Features
- Configurable
- Text Formatter
Usage
A simple configurable usage example:
import 'package:cubetiq/configurable.dart'
show
SystemConfig,
getConfigOrNull,
SimpleConfigurationProvider,
setConfig;
main() {
SystemConfig.setProvider(SimpleConfigurationProvider());
setConfig('hello', 'Be the World!');
var title = getConfigOrNull('hello', defaultValue: 'Just Hello');
print(title); //output will be: Be the World
}
Contributors
- Sambo Chea sombochea@cubetiqs.com
Features and bugs
Please file feature requests and bugs at the issue tracker.