background_patterns 0.0.1 copy "background_patterns: ^0.0.1" to clipboard
background_patterns: ^0.0.1 copied to clipboard

outdated

Package that enables you to implement glorious backgrounds with customizable patterns and shapes

example/lib/main.dart

import 'package:example/configure_background_pattern.dart';
import 'package:example/custom_background.dart';
import 'package:flutter/material.dart';

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

class ExampleBackgroundPatterns extends StatelessWidget {
  const ExampleBackgroundPatterns({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
        debugShowCheckedModeBanner: false,
        home: Scaffold(
          body: ConfigureBackgroundPattern(),
        ));
  }
}
7
likes
0
points
28
downloads

Publisher

verified publisherthomassenapps.com

Weekly Downloads

Package that enables you to implement glorious backgrounds with customizable patterns and shapes

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on background_patterns