text_plus 0.1.2 copy "text_plus: ^0.1.2" to clipboard
text_plus: ^0.1.2 copied to clipboard

outdated

This pakcage is a wrapper for the Text widget that allows you to use the same widget with different styles in the same text.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:text_plus/text_plus.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: TextPlusExample(),
    );
  }
}

class TextPlusExample extends StatelessWidget {
  const TextPlusExample({super.key});

  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      body: Center(
        child: TextPlus('Hello *world*!, this is *bold* text *example*.'),
      ),
    );
  }
}
3
likes
0
points
25
downloads

Publisher

unverified uploader

Weekly Downloads

This pakcage is a wrapper for the Text widget that allows you to use the same widget with different styles in the same text.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on text_plus