mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
19 lines
358 B
Dart
19 lines
358 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
abstract class PopMenu {
|
|
static PopupMenuItem<T> build<T>(T t, IconData icon, String text) {
|
|
return PopupMenuItem<T>(
|
|
value: t,
|
|
child: Row(
|
|
children: [
|
|
Icon(icon),
|
|
const SizedBox(
|
|
width: 10,
|
|
),
|
|
Text(text),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|