dartlangeditorflutterflutter-appsflutter-examplesflutter-packageflutter-widgetquillquill-deltaquilljsreactquillrich-textrich-text-editorwysiwygwysiwyg-editor
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
735 B
33 lines
735 B
3 years ago
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
import '../../models/themes/quill_dialog_theme.dart';
|
||
|
import '../../models/themes/quill_icon_theme.dart';
|
||
|
import '../controller.dart';
|
||
|
import '../toolbar.dart';
|
||
|
|
||
|
class SearchButton extends StatelessWidget {
|
||
|
const SearchButton({
|
||
|
required this.icon,
|
||
|
required this.controller,
|
||
|
this.iconSize = kDefaultIconSize,
|
||
|
this.iconTheme,
|
||
|
this.dialogTheme,
|
||
|
Key? key,
|
||
|
}) : super(key: key);
|
||
|
|
||
|
final IconData icon;
|
||
|
final double iconSize;
|
||
|
|
||
|
final QuillController controller;
|
||
|
|
||
|
final QuillIconTheme? iconTheme;
|
||
|
|
||
|
final QuillDialogTheme? dialogTheme;
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
// TODO: implement floating search bar
|
||
|
return const SizedBox();
|
||
|
}
|
||
|
}
|