Flutter
This template helps you generate your design tokens in a dart file and icons as SVG files.
This example uses the following parsers:
to-flutter to generate your design tokens as dart files
svgo to optimize and generate icons as SVG files
If you use the CLI, you need to fill three properties:
repositoryis@organization/repositorypersonalAccessTokenwhich you can generate in your account settingsrulesare where you provide parsers and compatible options
{
"version": "2",
"repository": "@organization/repository",
// Only use the personalAccessToken when working with the CLI
"personalAccessToken": "<your-personal-access-token>",
"rules": [
{
"name": "Generate tokens for Flutter",
"parsers": [
{
"name": "to-flutter",
"output": {
"type": "file",
"filePath": "public/tokens.dart"
}
}
]
},
{
"name": "Optimize and generate icons as SVG files",
"parsers": [
{
"name": "svgo",
"output": {
"type": "directory",
"directoryPath": "public/vectors"
}
}
]
}
]
}If you use the GitHub, you need to fill 4 properties:
repositoryis@organization/repositoryheadlets you set the branch your PR will be created onbaselets you set the branch your PR will be merged onruleslets you transform tokens by chaining parsers
Last updated
Was this helpful?