mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-03 21:48:19 +00:00
20 lines
429 B
Dart
20 lines
429 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class DragHandle extends StatelessWidget {
|
|
const DragHandle({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
height: 4,
|
|
width: 40,
|
|
margin: const EdgeInsets.symmetric(vertical: 6),
|
|
decoration: BoxDecoration(
|
|
color: Colors.grey.shade400,
|
|
borderRadius: BorderRadius.circular(2),
|
|
),
|
|
);
|
|
}
|
|
}
|