From d32834c7457ad69380cbc47be48f99817e208c62 Mon Sep 17 00:00:00 2001 From: Jaime Date: Mon, 26 Aug 2024 14:33:49 +0200 Subject: [PATCH] fix: spell --- cspell.json | 14 ++++++++++++-- src/content/docs/examples/financial_dashboard.mdx | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/cspell.json b/cspell.json index ff37964..d501c92 100644 --- a/cspell.json +++ b/cspell.json @@ -1,8 +1,17 @@ { "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", "version": "0.2", - "ignorePaths": ["node_modules/**", ".**/"], - "files": ["**/*.md", "**/*.mdx", "**/*.tsx", "**/*.ts", "**/*.json"], + "ignorePaths": [ + "node_modules/**", + ".**/" + ], + "files": [ + "**/*.md", + "**/*.mdx", + "**/*.tsx", + "**/*.ts", + "**/*.json" + ], "words": [ "ABAP", "Abuild", @@ -96,6 +105,7 @@ "VGVENTURES", "VHDL", "Vimscript", + "vsync", "Xojo", "Zephir", "Zimpl" diff --git a/src/content/docs/examples/financial_dashboard.mdx b/src/content/docs/examples/financial_dashboard.mdx index 34e1017..9863316 100644 --- a/src/content/docs/examples/financial_dashboard.mdx +++ b/src/content/docs/examples/financial_dashboard.mdx @@ -22,7 +22,7 @@ The Financial Dashboard is a simple demo managed by two state handlers, a Flavor ### Theming -The theme in the app consists of a new color pallete and a different widget layout. With this in mind, we cannot just update the `ThemeData` in the `MaterialApp` widget, but we handle the feature with a `FlavorCubit`. +The theme in the app consists of a new color palette and a different widget layout. With this in mind, we cannot just update the `ThemeData` in the `MaterialApp` widget, but we handle the feature with a `FlavorCubit`. It is a simple cubit that emits the selected flavor when the corresponding button is tapped.