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

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
pub points
18%
popularity

Publisher

verified publisherthomassenapps.com

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