The coolest, smartest TextView for Flutter.
- Simple text view
- LinkTextSpan
- Convert your normal text containing links or hash-tags to clickable
See CHANGELOG for all breaking (and non-breaking) changes.
You should ensure that you add the router as a dependency in your flutter project.
dependencies:
smart_text_view: ^0.1.0
You should then run flutter packages upgrade
or update your packages in IntelliJ.
There is a pretty sweet example project in the example
folder. Check it out. Otherwise, keep reading to get up and running.
SmartText(
text:
'Hi, this is an example for both link example http://www.google.com and hashtag example #helloWorld @knoxpo',
onOpen: (url) {
_scaffoldKey.currentState.showSnackBar(
SnackBar(
content: ListTile(
title: Text('Link is clicked!'),
subtitle: Text(url),
),
),
);
},
onTagClick: (tag) {
_scaffoldKey.currentState.showSnackBar(
SnackBar(
content: ListTile(
title: Text('Tag is clicked!'),
subtitle: Text(tag),
),
),
);
},
onUserTagClick: (tag){
_scaffoldKey.currentState.showSnackBar(
SnackBar(
content: ListTile(
title: Text('User tag clicked!'),
subtitle: Text(tag),
),
),
);
}
);
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KNOXPO BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
SmartTextView is a Knoxpo original.