watermark_unique 1.0.7 copy "watermark_unique: ^1.0.7" to clipboard
watermark_unique: ^1.0.7 copied to clipboard

watermark_unique is a flutter package to add text and image watermarks on an image. You can customize the watermark's position, color, background color, and padding.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'example.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Center(child: Text('Watermark example')),
        ),
        body: const ExampleWidget(),
      ),
    );
  }
}
15
likes
160
pub points
71%
popularity

Publisher

verified publisherunknown.engineer

watermark_unique is a flutter package to add text and image watermarks on an image. You can customize the watermark's position, color, background color, and padding.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, image, plugin_platform_interface

More

Packages that depend on watermark_unique