pizzacorn_widgets 0.1.3 copy "pizzacorn_widgets: ^0.1.3" to clipboard
pizzacorn_widgets: ^0.1.3 copied to clipboard

discontinuedreplaced by: pizzacorn_ui

Customs Widgets by Pizzacorn.

example/main.dart

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

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'pizzacorn_widgets example',
      theme: ThemeData(colorSchemeSeed: Colors.deepPurple, useMaterial3: true),
      home: Scaffold(
        appBar: AppBar(title: const Text('pizzacorn_widgets example')),
        body: Padding(
          padding: const EdgeInsets.all(16),
          child: TextFieldCustom(
            labelText: 'Contraseña',
            hintText: '••••••••',
            obscureText: true,
            showPasswordToggle: true,
            prefixIcon: const Icon(Icons.lock),
          ),
        ),
      ),
    );
  }
}
0
likes
130
points
140
downloads

Publisher

unverified uploader

Weekly Downloads

Customs Widgets by Pizzacorn.

Repository (GitHub)
View/report issues

Topics

#widget #ui #flutter

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on pizzacorn_widgets