Skip to content

Commit

Permalink
fix: spell
Browse files Browse the repository at this point in the history
  • Loading branch information
jsgalarraga committed Aug 26, 2024
1 parent 7c0cf47 commit d32834c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -96,6 +105,7 @@
"VGVENTURES",
"VHDL",
"Vimscript",
"vsync",
"Xojo",
"Zephir",
"Zimpl"
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/examples/financial_dashboard.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit d32834c

Please sign in to comment.