Skip to content

Commit

Permalink
New lint fixes in packages, only doc comment impacting.
Browse files Browse the repository at this point in the history
  • Loading branch information
rydmike committed Nov 27, 2024
1 parent cb1504e commit fbca083
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/flex_color_scheme.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// A library to help you make beautiful color scheme based themes for Flutter.
library flex_color_scheme;
library;

/// Export FlexSeedScheme package API, except Cam16.
///
Expand Down
6 changes: 3 additions & 3 deletions lib/src/flex_sub_themes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@ sealed class FlexSubThemes {
/// When all required properties are undefined and flag is false or true,
/// the effective default styles for undefined inputs become:
///
/// ```
/// ```text
/// FCS defaults Flutter defaults
/// useFlutterDefaults false true
/// - background background background
Expand Down Expand Up @@ -5105,7 +5105,7 @@ sealed class FlexSubThemes {
/// When all required properties are undefined and flag is false or true,
/// the effective default styles for undefined inputs become:
///
/// ```
/// ```text
/// FCS defaults M2 defaults useMaterial3:true
/// useFlutterDefaults false true true
/// results in:
Expand Down Expand Up @@ -5777,7 +5777,7 @@ sealed class FlexSubThemes {
///
/// Differences when flag is false versus true are:
///
/// ```
/// ```text
/// FCS defaults M2 defaults useMaterial3:true
/// useFlutterDefaults false true true
/// results in:
Expand Down
8 changes: 4 additions & 4 deletions lib/src/flex_sub_themes_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3800,7 +3800,7 @@ class FlexSubThemesData with Diagnosticable {
/// In Flutter version 3.24 and earlier,
/// the Material-3 default is still also onSurface.
/// This is a spec BUG in Flutter's Material-3 defaults, it should be
/// onSurfaceVariant. See issue: <add new issue link here>
/// onSurfaceVariant. See issue: add new issue link here
final SchemeColor? navigationRailUnselectedLabelSchemeColor;

/// If true, the unselected label in the [NavigationRail] use a more
Expand Down Expand Up @@ -4040,7 +4040,7 @@ class FlexSubThemesData with Diagnosticable {
///
/// Impact on [BottomNavigationBarThemeData] sub-theming:
///
/// ```
/// ```text
/// FCS defaults Flutter defaults
/// useFlutterDefaults false true
/// - background background background
Expand All @@ -4060,7 +4060,7 @@ class FlexSubThemesData with Diagnosticable {
///
/// Impact on [NavigationBarThemeData] sub-theming:
///
/// ```
/// ```text
/// FCS defaults M2 defaults useMaterial3:true
/// useFlutterDefaults false true true
/// results in:
Expand All @@ -4083,7 +4083,7 @@ class FlexSubThemesData with Diagnosticable {
///
/// Impact on [NavigationRailThemeData] sub-theming:
///
/// ```
/// ```text
/// FCS defaults Flutter defaults
/// useFlutterDefaults false true
/// - background background surface
Expand Down
2 changes: 1 addition & 1 deletion lib/src/flex_theme_mode_switch.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ enum FlexThemeModeButtonOrder {
/// included in the option toggle button for each theme mode.
///
/// They scheme colors for each button will be in the order:
/// ```
/// ```text
/// | Primary | Secondary |
/// | Primary container | Tertiary |
/// ```
Expand Down

0 comments on commit fbca083

Please sign in to comment.