convenient_dev_toolkit 0.0.3 copy "convenient_dev_toolkit: ^0.0.3" to clipboard
convenient_dev_toolkit: ^0.0.3 copied to clipboard

便捷工具包

example/lib/main.dart

import 'package:convenient_dev_toolkit/convenient_dev_toolkit.dart';
import 'package:example/input/phone_input_test.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return CustomWidget(
      titleLabel: 'debug',
      body: SafeArea(
        child: SingleChildScrollView(
          child: Padding(
            padding: const EdgeInsets.symmetric(horizontal: 10),
            child: Column(
              crossAxisAlignment: CrossAxisAlignment.start,
              children: [
                getItemView(
                  label: '测试',
                  children: [
                    ElevatedButton(
                      child: const Text('电话号码输入框测试'),
                      onPressed: () {
                        Navigator.of(context)
                            .push(MaterialPageRoute(builder: (context) {
                          return const PhoneInputTest();
                        }));
                      },
                    ),
                  ],
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }

  Widget getItemView({
    String? label,
    List<Widget> children = const <Widget>[],
  }) {
    return Padding(
      padding: const EdgeInsets.only(top: 10),
      child: Column(
        crossAxisAlignment: CrossAxisAlignment.start,
        children: [
          Text(
            label ?? '',
            style: const TextStyle(fontSize: 20),
          ),
          Wrap(
            spacing: 10,
            children: children,
          ),
        ],
      ),
    );
  }
}
1
likes
0
points
54
downloads

Publisher

unverified uploader

Weekly Downloads

便捷工具包

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

decimal, flutter

More

Packages that depend on convenient_dev_toolkit