mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-05 04:40:37 +00:00
Added logs screen for server login
This commit is contained in:
parent
45f2230522
commit
f3ce298994
7 changed files with 142 additions and 14 deletions
|
@ -6,6 +6,7 @@ class CustomListTile extends StatelessWidget {
|
|||
final String? description;
|
||||
final Color? color;
|
||||
final void Function()? onTap;
|
||||
final void Function()? onDoubleTap;
|
||||
final Widget? trailing;
|
||||
final EdgeInsets? padding;
|
||||
|
||||
|
@ -16,6 +17,7 @@ class CustomListTile extends StatelessWidget {
|
|||
this.description,
|
||||
this.color,
|
||||
this.onTap,
|
||||
this.onDoubleTap,
|
||||
this.trailing,
|
||||
this.padding
|
||||
}) : super(key: key);
|
||||
|
@ -26,6 +28,7 @@ class CustomListTile extends StatelessWidget {
|
|||
color: Colors.transparent,
|
||||
child: InkWell(
|
||||
onTap: onTap,
|
||||
onDoubleTap: onDoubleTap,
|
||||
child: Container(
|
||||
padding: padding ?? const EdgeInsets.symmetric(
|
||||
vertical: 10,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue