sm_input_field 1.2.3 copy "sm_input_field: ^1.2.3" to clipboard
sm_input_field: ^1.2.3 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
0
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

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on sm_input_field