noise_generation 0.0.4 copy "noise_generation: ^0.0.4" to clipboard
noise_generation: ^0.0.4 copied to clipboard

A Flutter package that allows to generate random noise patterns.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:noise_generation/noise_generation.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Noise Generator Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const NoiseHomePage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text('Noise Generator Example')),
      body: Center(child: NoiseBox()),
    );
  }
}
3
likes
150
points
37
downloads

Publisher

verified publisherharshchhikara.xyz

Weekly Downloads

A Flutter package that allows to generate random noise patterns.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on noise_generation