random_x 0.2.5 copy "random_x: ^0.2.5" to clipboard
random_x: ^0.2.5 copied to clipboard

A Dart Library for all of your random needs you'll ever require in your projects.l

example/lib/main.dart

import 'package:example/routes/routes.dart';
import 'package:flutter/material.dart';
import 'pages/home_page.dart';

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

class RandomXExampleApp extends StatelessWidget {
  const RandomXExampleApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData.light(
        useMaterial3: true,
      ),
      routes: {
        Routes.homeRoute: (context) => const HomePage(),
      },
    );
  }
}
33
likes
0
pub points
79%
popularity

Publisher

verified publishercodegasmicguy.me

A Dart Library for all of your random needs you'll ever require in your projects.l

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

crypto, flutter

More

Packages that depend on random_x