Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vertical alignment between text and embed #2486

Open
1 task done
pamafe1976 opened this issue Feb 23, 2025 · 6 comments
Open
1 task done

Vertical alignment between text and embed #2486

pamafe1976 opened this issue Feb 23, 2025 · 6 comments
Labels
bug Something isn't working

Comments

@pamafe1976
Copy link

Have you checked for an existing issue?

Flutter Quill Version

11.0.0

Steps to Reproduce

I would like to center the text vertically with embed blocks.

This question has been asked twice in
#1067 [Web] [Mobile] [Desktop] Cannot vertically align custom component with the rest of the text
and
#1117 [Web], [Mobile] and [Desktop] Widgets vertical alignment along the text line

and in both cases has been closed as completed without explanation or solution. One of them links to a changelog entry that I could not find.

How can I achieve this?

Best Regards

Expected results

Be able to vertically align text with embeds

Actual results

text always aligned to the base of the embed

Additional Context

Screenshots / Video demonstration

[Attach media here]

Logs
[Paste logs here]
@pamafe1976 pamafe1976 added the bug Something isn't working label Feb 23, 2025
@CatHood0
Copy link
Collaborator

Can you pass to me some example code about the embed (it does not need to be equals)? I'll take a look and fix if needed.

@pamafe1976
Copy link
Author

This is a very simple example of an embed.

The text in the same line as the embed is aligned to the base of the embed, like it is shown in the images from #1067 and #1117. I could not find a way to change that vertical alignment

import 'dart:convert';
import 'package:catappadmin/extensions/quill_control_embed.dart';
import 'package:flutter/material.dart';
import 'package:flutter_quill/flutter_quill.dart';

abstract class ControlEmbed {
  ControlEmbed();

  String get type;

  Map<String, dynamic> toJson() {
    throw UnimplementedError('toJson() has not been implemented.');
  }

  static ControlEmbed fromJson(Map<String, dynamic> json) {
    throw UnimplementedError('fromJson() has not been implemented.');
  }

  factory ControlEmbed.fromNode(String node) {
    final json = jsonDecode(node);
    return fromJson(json);
  }
}

class SimpleIconEmbed extends ControlEmbed {
  SimpleIconEmbed({required this.code, required this.size});

  final int code;
  final double size;

  @override
  String get type => 'simpleicon';

  factory SimpleIconEmbed.fromNode(String node) {
    final json = jsonDecode(node);
    return SimpleIconEmbed.fromJson(json);
  }

  @override
  factory SimpleIconEmbed.fromJson(Map<String, dynamic> json) {
    return SimpleIconEmbed(
      code: (json['code'] as num).toInt(),
      size: (json['size'] as num).toDouble(),
    );
  }

  @override
  Map<String, dynamic> toJson() {
    final json = {
      'code': code,
      'size': size,
    };
    return json;
  }
}

class SimpleIconEmbedBuilder extends EmbedBuilder {
  SimpleIconEmbedBuilder();

  @override
  String get key => 'simpleicon';

  @override
  bool get expanded => false;

  @override
  Widget build(
    BuildContext context,
    EmbedContext embedContext,
  ) {
    final iconEmbed = SimpleIconEmbed.fromNode(embedContext.node.value.data);

    final attributes = embedContext.node.style.attributes;
    final attr = attributes['color'];
    final color = attr?.value as Color?;

    return GestureDetector(
      child: Builder(builder: (context) {
        return Icon(
          IconData(iconEmbed.code, fontFamily: 'MaterialIcons'),
          size: iconEmbed.size,
          color: color,
        );
      }),
    );
  }
}

This code inserts the embed:

Future<void> addListTile(BuildContext context) async {
   final iconEmbed = SimpleIconEmbed(size: 80, code: Icons.add_box.codePoint);
   final data = jsonEncode(iconEmbed);
   final block = Embeddable('simpleicon', data);
   final index = quillController.selection.baseOffset;
   final length = quillController.selection.extentOffset - index;
   quillController
     ..skipRequestKeyboard = true
     ..replaceText(
       index,
       length,
       block,
       null,
     )
     ..moveCursorToPosition(index + 1);
 }

@EchoEllet
Copy link
Collaborator

One of them links to a changelog entry that I could not find.

That's because the previous CHANGELOG has been achieved, the valid link now is: https://pub.dev/packages/flutter_quill/versions/10.8.5/changelog#702

@pamafe1976
Copy link
Author

One of them links to a changelog entry that I could not find.

That's because the previous CHANGELOG has been achieved, the valid link now is: https://pub.dev/packages/flutter_quill/versions/10.8.5/changelog#702

I did realize of that, but the old changelog does not have any #720 entry and I found nothing related to this issue

@EchoEllet
Copy link
Collaborator

This is what I found:

Allow widgets to override widget span properties.

@manudicri
Copy link

Hi, how to fix this then?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants