tss_poster 1.3.9
tss_poster: ^1.3.9 copied to clipboard
A professional Canva-style poster editor with realistic templates, advanced editing tools, drag-and-drop, and cross-platform support for all devices.
example/tss_poster_example.dart
import 'package:tss_poster/tss_poster.dart';
void main() {
// Only static, non-UI, non-IO demonstration.
final controller = PosterController();
controller.addLayer(TextLayer(text: "Sample text"));
print("Poster created successfully with ${controller.poster.layers.length} layer.");
}