Create quill_custom_icon.dart

pull/804/head
mark8044 3 years ago committed by GitHub
parent a8c59daec4
commit 2f21721ed0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      lib/src/models/themes/quill_custom_icon.dart

@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
class QuillCustomIcon {
const QuillCustomIcon(
{this.icon,
this.onTap});
///The icon widget
final Widget? icon;
///The function when the icon is tapped
final VoidCallback? onTap;
}
Loading…
Cancel
Save