From 468dd36692f3921e584875806c4156299cf15646 Mon Sep 17 00:00:00 2001 From: zmtzawqlp Date: Wed, 7 Jun 2023 22:41:55 +0800 Subject: [PATCH] Add main differences between TextField and ExtendedTextField --- README-ZH.md | 10 ++++++++++ README.md | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/README-ZH.md b/README-ZH.md index 717639b..02773fd 100644 --- a/README-ZH.md +++ b/README-ZH.md @@ -8,6 +8,16 @@ [ExtendedTextField 在线 Demo](https://fluttercandies.github.io/extended_text_field/) +ExtendedTextField 是 Flutter 官方 TextField 的三方扩展库,主要扩展功能如下: + +| 功能 | ExtendedTextField | TextField | +|-----------------------------------------|---------------------------------------------------------|----------------------------------------------------------| +| 图文混合 | 支持,可以实现图文混合显示 | 仅支持显示文本,但在选择文本时会出现问题 | +| 支持复制真实值 | 支持,可以复制出文本的真实值 | 不支持 | +| 根据文本格式快速构建富文本 | 支持,可以根据文本格式快速构建富文本 | 不支持 | + + + - [extended\_text\_field](#extended_text_field) - [限制](#限制) diff --git a/README.md b/README.md index 175f503..9ca9a4c 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,16 @@ Extended official text field to build special text like inline image, @somebody, [Web demo for ExtendedTextField](https://fluttercandies.github.io/extended_text_field/) +ExtendedTextField is a third-party extension library for Flutter's official TextField component. The main extended features are as follows: + +| Feature | ExtendedTextField | TextField | +|---------------------------------------|------------------------------------------------------|----------------------------------------------------| +| Inline images and text mixture | Supported, allows displaying inline images and mixed text | Only supports displaying text, but have issues with text selection | +| Copying the actual value | Supported, enables copying the actual value of the text | Not supported | +| Quick construction of rich text | Supported, enables quick construction of rich text based on text format | Not supported | + +Please note that the translation provided above is based on the information you provided in the original text. + - [extended\_text\_field](#extended_text_field) - [Limitation](#limitation) - [Special Text](#special-text)