just_widgets 1.0.3
just_widgets: ^1.0.3 copied to clipboard
Provide custom widgets and functions, Widgets and Function easy to access and no longer code.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:just_widgets/just_text_field.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Just Widgets'),
),
body: const Center(
child: JustTextField(labelText: "Value", hintText: "Enter value"),
),
),
);
}
}