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
120
pub points
0%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, flutter_web_plugins, fluttertoast

More

Packages that depend on just_widgets