flutter_faker_indonesia 1.0.0 copy "flutter_faker_indonesia: ^1.0.0" to clipboard
flutter_faker_indonesia: ^1.0.0 copied to clipboard

Faker is a Dart library that generates fake data. It can be used to generate realistic data for testing, development, and prototyping.

example/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_faker_indonesia/faker.dart';

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

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

  @override
  Widget build(BuildContext context) {
    Faker faker = Faker.generate();
    return MaterialApp(
        title: 'Flutter Demo',
        home: Scaffold(
          body: SafeArea(child: Text(faker.pekerjaan.namaPerusahaan())),
        ));
  }
}
2
likes
130
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

Faker is a Dart library that generates fake data. It can be used to generate realistic data for testing, development, and prototyping.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

MIT (license)

Dependencies

dartdoc, flutter, intl, uuid

More

Packages that depend on flutter_faker_indonesia