mirror of
https://github.com/wgh136/pixes.git
synced 2025-09-27 12:57:24 +00:00
26 lines
605 B
Dart
26 lines
605 B
Dart
import 'package:fluent_ui/fluent_ui.dart';
|
|
import 'package:pixes/foundation/app.dart';
|
|
|
|
class TitleBar extends StatelessWidget {
|
|
const TitleBar({required this.title, this.action, super.key});
|
|
|
|
final String title;
|
|
|
|
final Widget? action;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
child: Row(
|
|
children: [
|
|
Text(title,
|
|
style: const TextStyle(fontSize: 20, fontWeight: FontWeight.bold),),
|
|
const Spacer(),
|
|
if(action != null)
|
|
action!
|
|
],
|
|
).paddingHorizontal(16).paddingVertical(8),
|
|
);
|
|
}
|
|
}
|