mirror of
https://github.com/Livinglist/Hacki.git
synced 2025-08-06 18:24:42 +08:00
15 lines
297 B
Dart
15 lines
297 B
Dart
import 'package:flutter/material.dart' show IconData, Icons;
|
|
|
|
enum ExportDestination {
|
|
qrCode('QR code', icon: Icons.qr_code),
|
|
clipBoard('ClipBoard', icon: Icons.copy);
|
|
|
|
const ExportDestination(
|
|
this.label, {
|
|
required this.icon,
|
|
});
|
|
|
|
final String label;
|
|
final IconData icon;
|
|
}
|