tss_poster 1.4.1
tss_poster: ^1.4.1 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:flutter/foundation.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"));
debugPrint('Poster Editor Example');
}