just_widgets 1.0.3 copy "just_widgets: ^1.0.3" to clipboard
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"),
        ),
      ),
    );
  }
}
1
likes
140
points
26
downloads

Publisher

unverified uploader

Weekly Downloads

Provide custom widgets and functions, Widgets and Function easy to access and no longer code.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, fluttertoast

More

Packages that depend on just_widgets