mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 11:12:23 +01:00
28 lines
760 B
Dart
28 lines
760 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:reboot_common/common.dart';
|
|
import 'package:system_theme/system_theme.dart';
|
|
|
|
class WindowBorder extends StatelessWidget {
|
|
const WindowBorder({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return IgnorePointer(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(
|
|
top: 1
|
|
),
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(10),
|
|
border: Border.all(
|
|
color: SystemTheme.accentColor.accent,
|
|
width: appBarWidth.toDouble()
|
|
)
|
|
)
|
|
),
|
|
)
|
|
);
|
|
}
|
|
}
|