Skip to content

Commit

Permalink
Remove Tag uppercase from snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
Kypsis committed May 14, 2024
1 parent 5535328 commit 0746660
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion example/assets/code_snippets/combobox_multi_select.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ class _ComboboxMultiSelectState extends State<ComboboxMultiSelect> {
onTap: () => setState(() => _selectedOptions.clear()),
child: MoonTag(
tagSize: MoonTagSize.xs,
isUpperCase: false,
backgroundColor: context.moonColors!.bulma,
label: Text(
"${_selectedOptions.keys.length}",
Expand Down
1 change: 0 additions & 1 deletion example/assets/code_snippets/dropdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ class _DropdownState extends State<Dropdown> {
? Center(
child: MoonTag(
tagSize: MoonTagSize.xs,
isUpperCase: false,
backgroundColor: context.moonColors!.bulma,
onTap: () => setState(() => _availableChoices.updateAll((key, value) => false)),
label: Text(
Expand Down
2 changes: 2 additions & 0 deletions example/macos/Flutter/GeneratedPluginRegistrant.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ import Foundation

import package_info_plus
import path_provider_foundation
import shared_preferences_foundation

func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
FLTPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FLTPackageInfoPlusPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
}

0 comments on commit 0746660

Please sign in to comment.