Add .pubignore (#1521)

* Add .pubignore
pull/1522/head
Ellet 1 year ago committed by GitHub
parent 91dd226275
commit 7076e20135
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      .pubignore
  2. 4
      CHANGELOG.md
  3. 4
      lib/src/translations/toolbar.i18n.dart
  4. 9
      lib/src/widgets/toolbar/buttons/quill_icon.dart

@ -1,3 +1,11 @@
# For local development
pubspec_overrides.yaml
pubspec_overrides.yaml.g
pubspec_overrides.yaml.g
# Github
.github/
# The example
example/.fvm/
example/build/
example/.dart_tool/

@ -1,3 +1,6 @@
## [8.4.4]
- Update `.pubignore` to ignore unnecessary files and folders
## [8.4.3]
- Update `CHANGELOG.md`
@ -7,7 +10,6 @@
- You can use now the `QuillRawEditor` without `QuillEditorProvider`
- Bug fixes
- Add implementation of image cropping in the `example`
<!-- - Update the `QuillToolbarIconButton` to use the material 3 buttons -->
## [8.4.1]
- Add `copyWith` in `OptionalSize` class

@ -74,7 +74,9 @@ extension Localization on String {
'Error while saving image': 'Error while saving image',
'Please enter a text for your link': "e.g., 'Learn more)",
'Please enter the link url': "e.g., 'https://example.com'",
'Please enter a valid image url': 'Please enter a valid image url'
'Please enter a valid image url': 'Please enter a valid image url',
'Photo': 'Photo',
'Image': 'Image',
},
'en_us': {
'Paste a link': 'Paste a link',

@ -19,6 +19,7 @@ class QuillToolbarIconButton extends StatelessWidget {
final VoidCallback? onPressed;
final VoidCallback? afterPressed;
final Widget? icon;
final double size;
final Color? fillColor;
final double hoverElevation;
@ -28,14 +29,6 @@ class QuillToolbarIconButton extends StatelessWidget {
@override
Widget build(BuildContext context) {
// return IconButton(
// onPressed: () {
// onPressed?.call();
// afterPressed?.call();
// },
// icon: icon ?? const SizedBox.shrink(),
// tooltip: tooltip,
// );
return ConstrainedBox(
constraints: BoxConstraints.tightFor(width: size, height: size),
child: UtilityWidgets.maybeTooltip(

Loading…
Cancel
Save