sm_input_field 1.4.0 copy "sm_input_field: ^1.4.0" to clipboard
sm_input_field: ^1.4.0 copied to clipboard

a package to create input fields in a simple manner, facilitates the easy and simple creation of beautiful forms too

example/lib/main.dart

import 'package:flutter/material.dart';

import 'screens/home_screen.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomeScreen(),
    );
  }
}
3
likes
150
pub points
30%
popularity

Publisher

unverified uploader

a package to create input fields in a simple manner, facilitates the easy and simple creation of beautiful forms too

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0, BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on sm_input_field