curl_text 1.0.0 copy "curl_text: ^1.0.0" to clipboard
curl_text: ^1.0.0 copied to clipboard

A simple and flexible Flutter package for creating text with customizable outlines.

example/curl_text_example.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: Center(
          child: CurlTextWidget(
            text: 'Hello, World!',
            fontSize: 30,
            textColor: Colors.white,
            strokeColor: Colors.black,
            strokeWidth: 4,
          ),
        ),
      ),
    );
  }
}
1
likes
160
points
48
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A simple and flexible Flutter package for creating text with customizable outlines.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on curl_text