curl_text 1.1.0 copy "curl_text: ^1.1.0" to clipboard
curl_text: ^1.1.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,
            fontWeight: FontWeight.bold,
            // fontFamily: 'Roboto',
          ),
        ),
      ),
    );
  }
}
1
likes
0
points
103
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on curl_text