简体   繁体   中英

Add Showcase / Highlight Flutter

I have the flutter code to display the showcase or highlights using https://pub.dev/packages/showcaseview/example

I want to show a long description which is 3 lines, is this possible? now when my description is long it will show 1 line

Showcase(
                              key: _one,
                              description: 'I WANT ADD LONG DESCRIPTION HERE,I WANT ADD LONG DESCRIPTION HERE, I WANT ADD LONG DESCRIPTION HERE,  ',
                              child: Icon(
                                Icons.menu,
                                color: Colors.black45,
                              ),
                            ),

Simply add \n in your text. Something like:

'I WANT ADD LONG DESCRIPTION HERE,\nI WANT ADD LONG DESCRIPTION HERE,\nI WANT ADD LONG DESCRIPTION HERE,  ',

Result:
在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM