flutter_text_styled 0.0.2 copy "flutter_text_styled: ^0.0.2" to clipboard
flutter_text_styled: ^0.0.2 copied to clipboard

outdated

Flutter package to get styled Text with basic HTML text tags.

example/Example.dart

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

class StyledPage extends StatefulWidget {
  @override
  _StyledPageState createState() => _StyledPageState();
}

class _StyledPageState extends State<StyledPage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("Title"),
      ),
      body: Padding(
        padding: const EdgeInsets.all(8.0),
        child: SingleChildScrollView(
          child: Column(
            crossAxisAlignment: CrossAxisAlignment.start,
            children: TextStyled().getStyledTextWidgets(
                "Your normal text with [b]bolded text inside[/b] "
                "\n and again normal and again [b]bold text[/b]."),
          ),
        ),
      ),
    );
  }
}
9
likes
0
pub points
78%
popularity

Publisher

unverified uploader

Flutter package to get styled Text with basic HTML text tags.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_text_styled