widgetkit 0.4.0 copy "widgetkit: ^0.4.0" to clipboard
widgetkit: ^0.4.0 copied to clipboard

A kit of widgets that are (almost) always needed in the different apps.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:widgetkit/widgetkit.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Widgetkit Demo',
      theme: ThemeData(
        primarySwatch: Colors.blueGrey,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Widgetkit Demo'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  List<String> selectedChipsMultiple = [];
  String? selectedChip;

  @override
  Widget build(BuildContext context) {
    return HideKeyboardOnTouchOutside(
      child: Scaffold(
        appBar: AppBar(
          title: Text(widget.title),
        ),
        body: Padding(
          padding: const EdgeInsets.all(8.0),
          child: ListView(
            children: [
              Text(
                "PasswordTextField",
                style: Theme.of(context).textTheme.titleLarge,
              ),
              SizedBox(height: 16),
              PasswordTextField(),
              SizedBox(height: 16),
              PasswordTextField(
                decoration: InputDecoration(
                  border: OutlineInputBorder(),
                ),
              ),
              SizedBox(height: 32),
              Text(
                "AutolinkText",
                style: Theme.of(context).textTheme.titleLarge,
              ),
              SizedBox(height: 16),
              AutolinkText(
                "Hello world from https://www.flutter.dev/",
                textStyle: TextStyle(color: Colors.black),
                linkStyle: TextStyle(
                  color: Colors.blue,
                  decoration: TextDecoration.underline,
                ),
                onWebLinkTap: (String url) => print(url),
              ),
              SizedBox(height: 16),
              AutolinkText(
                "Humanized (removes scheme) https://www.flutter.dev/",
                humanize: true,
                textStyle: TextStyle(color: Colors.black),
                linkStyle: TextStyle(
                  color: Colors.blue,
                  decoration: TextDecoration.underline,
                ),
                onWebLinkTap: (String url) => print(url),
              ),
              SizedBox(height: 16),
              AutolinkText(
                "Autolink email me@codingale.dev",
                textStyle: TextStyle(color: Colors.black),
                linkStyle: TextStyle(
                  color: Colors.green,
                  decoration: TextDecoration.underline,
                ),
                onEmailTap: (String url) => print(url),
              ),
              SizedBox(height: 16),
              AutolinkText(
                "Autolink phone +50688884444",
                textStyle: TextStyle(color: Colors.black),
                linkStyle: TextStyle(
                  color: Colors.orange,
                  decoration: TextDecoration.underline,
                ),
                onPhoneTap: (String url) => print(url),
              ),
              SizedBox(height: 32),
              Text(
                "ChipSelection",
                style: Theme.of(context).textTheme.titleLarge,
              ),
              SizedBox(height: 16),
              Text(
                "Multiple Selection",
                style: Theme.of(context).textTheme.titleMedium,
              ),
              ChipSelection<String>.multiple(
                wrapped: true,
                alignment: WrapAlignment.center,
                value: selectedChipsMultiple,
                onChanged: (selected) {
                  setState(() {
                    selectedChipsMultiple = selected;
                  });
                },
                choiceItems: ChipSelectionData.listFrom<String, String>(
                  source: ["Hello", "Multiple", "Chip", "Selection"],
                  value: (i, v) => v,
                  label: (i, v) => v,
                ),
              ),
              SizedBox(height: 16),
              Text(
                "Single Selection",
                style: Theme.of(context).textTheme.titleMedium,
              ),
              ChipSelection<String?>.single(
                wrapped: true,
                alignment: WrapAlignment.center,
                value: selectedChip,
                onChanged: (selected) {
                  setState(() {
                    selectedChip = selected;
                  });
                },
                choiceItems: ChipSelectionData.listFrom<String, String>(
                  source: ["Hello", "Single", "Chip", "Selection"],
                  value: (i, v) => v,
                  label: (i, v) => v,
                ),
              ),
            ],
          ),
        ),
      ),
    );
  }
}
2
likes
130
pub points
47%
popularity

Publisher

verified publishercodingale.dev

A kit of widgets that are (almost) always needed in the different apps.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on widgetkit