Search
 
SCRIPT & CODE EXAMPLE
 

DART

flutter textspan onclick

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 :: how to make a column scrollable in flutter 
Dart :: flutter border around textbutton 
Dart :: sleep in dart 
Dart :: reverse srring in dart 
Dart :: card border radius in flutter 
Dart :: flutter how to space buttons evenly in a row 
Dart :: height appbar flutter 
Dart :: flutter textbutton autofocus 
Dart :: options = null firebaseoptions cannot be null when creating the default app. flutter 
Dart :: flutter auto height container 
Dart :: Flutter - BoxShadow Widget 
Dart :: flutter chip delete 
Dart :: flutter loading images over network 
Dart :: cross icon flutter 
Dart :: flutter textfield label color 
Dart :: flutter cut string 
Dart :: how to disable windows build flutter 
Dart :: alertdialog flutter press outside to disappera 
Dart :: flutter list dynamic to list int 
Dart :: flutter send json body to api 
Dart :: get direction routes in mapbox flutter 
Dart :: flutter chip 
Dart :: flutter chip delete icon 
Dart :: random in flutter int 
Dart :: flutter sliver grid 
Dart :: dart to string 
Dart :: dart null aware 
Dart :: flutter tooltip 
Dart :: popup keyboard automatically in flutter 
Dart :: regex dart 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =