Skip to content
This repository has been archived by the owner on Sep 22, 2023. It is now read-only.

Implement the missing ListTile fields. #1

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/src/material/drawer_list_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,15 @@ class DrawerListTile extends StatelessWidget implements ListTile {

final EdgeInsets? margin;

@override
final TextStyle? titleTextStyle;

@override
final TextStyle? subtitleTextStyle;

@override
final TextStyle? leadingAndTrailingTextStyle;

const DrawerListTile({
super.key,
this.autofocus = false,
Expand Down Expand Up @@ -130,6 +139,9 @@ class DrawerListTile extends StatelessWidget implements ListTile {
this.margin,
this.onFocusChange,
this.splashColor,
this.titleTextStyle,
this.subtitleTextStyle,
this.leadingAndTrailingTextStyle,
});

@override
Expand Down