mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
8 lines
127 B
Dart
8 lines
127 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
extension WidgetX on Widget {
|
|
Widget get card {
|
|
return Card(child: this);
|
|
}
|
|
}
|