Facebook Twitter Instagram
    DeepCrazyWorld
    Facebook Twitter Instagram Pinterest YouTube
    • FLUTTER
      • FLUTTER APP
        • QRCode
        • Quiz App
        • Chat GPT
        • PDF App
        • News App
        • Fitness App
        • Weather App
        • BMI Calculator
        • GAME APP
        • Ecommerce App
        • wallpaper App
        • Finance app
        • Chat App
        • Wallet App
        • Taxi App
        • Quran app
        • Music player app
      • FLUTTER UI
        • Splash Screen
        • Onboarding Screen
        • Login Screen
        • Card Design
        • Drawer
    • PROJECT
      • Android Projects
      • College Projects
      • FLUTTER APP
      • Project Ideas
      • PHP Projects
      • Python Projects
    • SOURCE CODE
    • ANDROID
      • ANDROID APP
      • GAME APP
      • ANDROID STUDIO
    • MCQ
      • AKTU MCQ
        • RPA MCQ
        • COA MCQ
        • HPC MCQ
        • SPM MCQ
        • Renewable Energy All MCQ
        • Data Compression MCQ
        • Data Structure MCQ
        • Digital Image Processing MCQ
        • Software Engineering MCQ
        • Machine Learning MCQ
        • Artificial Intelligence MCQ
      • D PHARMA MCQ
        • Pharmaceutics – I MCQ
        • Pharmacognosy MCQ
        • Pharmaceutical Chemistry MCQ
        • Biochemistry and Clinical Pathology MCQ
        • Human Anatomy and Physiology MCQ
        • Heath Education and Community Pharmacy MCQ
    • INTERVIEW QUESTIONS
      • Flutter Interview Questions
      • INTERVIEW QUESTIONS
      • Python Interview Questions
      • Coding ninjas solution
    • MORE
      • WORDPRESS
        • SEO
        • TOP 10 WORDPRESS THEME
      • PRODUCTIVITY
      • Program
      • QUOTES
    DeepCrazyWorld
    Home»FLUTTER»Flutter package multi_link_text allows you to create text with clickable links
    FLUTTER

    Flutter package multi_link_text allows you to create text with clickable links

    DeepikaBy DeepikaDecember 16, 2023Updated:December 16, 2023No Comments3 Mins Read

    A Flutter package multi_link_text allows you to create text with clickable links and additional styling options

    Table of Contents

    Toggle
    • Multi Link Text
    • Features
    • Installation
    • Usage
    • Contributing
        • Resources Used:
    • Get Full Source Code
    • Conclusion
        • Related Articles:
      • READ MORE

    Multi Link Text

    A Flutter package multi_link_text allows you to create text with clickable links and additional styling options.

    Features

    Clickable Links

    • MultiLinkText allows you to specify certain words as clickable links, and you can define actions to be performed when those links are clicked.

    Rich Text Support

    • It supports rich text formatting, enabling you to customize the appearance of different words in the text.

    Paragraph Handling

    • You can include paragraph breaks in the text, and the widget will handle them accordingly.

    Installation

    To use this package, add multi_link_text as a dependency in your pubspec.yaml file.

    dependencies:
      flutter:
        sdk: flutter
      multi_link_text: ^0.0.5  # Use the latest version

    ‼️ Then run the following command to fetch the package:

    flutter clean
    flutter pub get

    Usage

    import 'package:flutter/material.dart';
    import 'package:multi_link_text/multi_link_text.dart';
    
    void main() {
      runApp(const MultiLinkTextExample());
    }
    
    class MultiLinkTextExample extends StatelessWidget {
      const MultiLinkTextExample({super.key});
    
      @override
      Widget build(BuildContext context) {
        return MaterialApp(
          debugShowCheckedModeBanner: false,
          home: Scaffold(
            appBar: AppBar(
              title: const Text('Multi Link Text example'),
              backgroundColor: Colors.orange,
            ),
            body: const Center(
              child: MultiLinkText(
                data: 'It is Multi Link Text package. How to use it? Click ME !',
                params: {'ME': 'https://www.google.com'},
                extraParams: ['Multi', 'Link', 'Text', 'How'],
                paragraph: ['How'],
                extraParamsStyle: TextStyle(
                  decoration: TextDecoration.underline,
                  decorationStyle: TextDecorationStyle.wavy,
                  color: Colors.green,
                  fontSize: 25,
                ),
                paramsStyle: TextStyle(
                  decoration: TextDecoration.underline,
                  decorationStyle: TextDecorationStyle.wavy,
                  color: Colors.orange,
                  fontSize: 20,
                  decorationColor: Color(0xFFFF6F00),
                ),
                style: TextStyle(fontSize: 25, color: Colors.black),
              ),
            ),
          ),
        );
      }
    }
    
    

    Contributing

    Contributions are welcome! Please feel free to submit issues and pull requests.

    Resources Used:

    • YouTube
    • Dart & Flutter Packages

    You can check out the entire code of this App here:

    Get Full Source Code

    View Github

    download source code

    Conclusion

    This was all about a quick go through the basic flutter App UI Screen. If you need any assistance regarding flutter app development, you can consult a flutter developer from FlutterDesk. We would love to be of help. Still, if you feel any difficult while dealing with Flutter app development projects, you can reach out to us or hire Flutter developers to outsource any of your app development project.

    Do like & share my Facebook page. if you find this post helpful. Thank you!!

    Happy coding! 😉

    Related Articles:

    • How to Install Flutter in windows 10
    • Make News and Weather App using flutter
    • Quiz App using flutter with source code
    • Chat GPT Voice Chatbot App with Flutter source code
    • Flutter NEWS App with REST APIs source code
    • Flutter Wallpaper Application built with Flutter source code
    • Beautiful Login and signup screen using Flutter
    • Flutter Login Page and Registration App UI screen design
    • Flutter Login screen model app with source code
    • Animated Login screen using Flutter with source code
    • Beautiful Login Page UI made in flutter source code
    • Flutter Responsive Login and Signup Auth Screen
    • A Flutter Responsive Login and Signup Auth Screen UI
    • Flutter Login and Register Auth App using Google and Facebook sign in
    • Face recognition authentication (Signup + signin) with Flutter
    • A Flutter Animated Login screen UI design source code
    • A Flutter Login and SignUp Page UI screen app design
    • Flutter Login and Signup Page with Firebase and Cloud Firestore
    • Flutter Login Signup UI Screens with Animation source code
    • SignIn and SignUp App Using Flutter with source code

    READ MORE

    Share. Facebook Twitter LinkedIn WhatsApp Telegram Pinterest Reddit Email
    Previous ArticleMake app more alive with beautiful animated Flutter icons
    Next Article Prepare your animated faq list easily with flutter

    Related Posts

    Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile

    FLUTTER 5 Mins Read

    Animated Backgrounds in Flutter: A Complete Guide

    FLUTTER 4 Mins Read

    How to make custom BottomNavigationBar in flutter with source code

    BottomNavigationBar 4 Mins Read

    How to Make a ToDo App with Flutter with source Code StepWise in 2024

    FLUTTER 4 Mins Read

    Leave A Reply Cancel Reply

    Recent Posts
    • Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile March 29, 2025
    • Creating an Instruction UI Screen in Flutter Application March 29, 2025
    • Animated Backgrounds in Flutter: A Complete Guide March 15, 2025
    • How to make Diary App using flutter stepwise using getx August 31, 2024
    • How to Create Music Player UI screen with fully functional in flutter August 30, 2024
    • How to make ListView Builder Ui in flutter with Source Code August 29, 2024
    • Create a TabBar View in flutter with fully functional stepwise August 28, 2024
    • How to create TabBar view in flutter with source code step wise August 27, 2024
    • How to make Heart rate measure app with Flutter stepwise August 26, 2024
    • How to make ChatGpt App in flutter with source code Stepwise August 25, 2024
    Facebook Twitter Instagram Pinterest YouTube
    • About
    • Contact
    • Disclaimer
    • Privacy Policy
    Copyright by DeepCrazyWorld © 2025

    Type above and press Enter to search. Press Esc to cancel.