fancy_password_field 1.0.0+2 copy "fancy_password_field: ^1.0.0+2" to clipboard
fancy_password_field: ^1.0.0+2 copied to clipboard

outdated

A new Flutter package project.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'samples/samples.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        body: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: const [
            /// Change this to one of the available samples on the samples folder
            Sample1(),
          ],
        ),
      ),
    );
  }
}