Search
 
SCRIPT & CODE EXAMPLE
 

DART

textspan flutter

import 'package:flutter/gestures.dart';
...

new RichText(
  text: new TextSpan(text: 'Non touchable. ', children: [
    new TextSpan(
      text: 'Tap here.',
      recognizer: new TapGestureRecognizer()..onTap = () => print('Tap Here onTap'),
    )
  ]),
);
Comment

PREVIOUS NEXT
Code Example
Dart :: flutter text decoration underline color 
Dart :: to disable the shrinker pass the --no-shrink flag to this command. in flutter 
Dart :: MaterialStateProperty<Color? flutter 
Dart :: dart move item in list 
Dart :: dart map foreach 
Dart :: flutter check ios or android 
Dart :: dart square root 
Dart :: list of strings in dart 
Dart :: dartpad missing browser localstorage 
Dart :: linearprogressindicator flutter 
Dart :: change icon color flutter 
Dart :: flutter two line list 
Dart :: convert a list to string in flutter 
Dart :: get direction routes in mapbox flutter 
Dart :: flutter iOS & Android chnage package name & app name 
Dart :: dart loop through list 
Dart :: how to convert int/int to float dart 
Dart :: flutter icon logout 
Dart :: convert list in set dart 
Dart :: flutter int max value 
Dart :: Flutter For In loop explained 
Dart :: flutter concat lists 
Dart :: string to int in dart 
Dart :: flutter vibration 
Dart :: flutter icon 
Dart :: how to get image file size in flutter 
Dart :: 2d list in dart 
Dart :: platform brightness flutter 
Dart :: provider flutter docs 
Dart :: change color icon tabbar flutter 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =