GAM3RG33K / flutter_settings_screens

Settings Screen with Custom Shared Preference Interface
MIT License
176 stars 71 forks source link

ExpandableSettingsTile does not respect expanded argument #65

Open hapasa opened 3 years ago

hapasa commented 3 years ago
 /// flag which represents the initial state of the tile, if true the tile state is
  /// set to expanded initially, default = false
  final bool expanded;

  ExpandableSettingsTile({
    required this.title,
    required this.children,
    this.subtitle = '',
    this.enabled = true,
    this.expanded = false,
    this.leading,
  });

Even if I set expanded = true, it remains closed at startup.

GAM3RG33K commented 3 years ago

can you provide a working example code where this issue is occuring? I checked the code & example code from latest release commit & it is working.