mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-27 14:23:18 +03:00
15 lines
329 B
Dart
Executable File
15 lines
329 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
class ListTitle extends StatelessWidget {
|
|
final String title;
|
|
|
|
const ListTitle(this.title, {super.key});
|
|
@override
|
|
Widget build(BuildContext context) => ListTile(
|
|
title: Text(
|
|
title,
|
|
style: Theme.of(context).textTheme.labelLarge,
|
|
),
|
|
);
|
|
}
|