curl_text 1.0.0
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,
),
),
),
);
}
}