builder method

  1. @override
Widget builder(
  1. BuildContext context,
  2. BoxConstraints constrains
)
override

Implementation

@override
Widget builder(BuildContext context, BoxConstraints constrains) {
  return Scaffold(
    appBar: AppBar(
      title: const Text("Teste"),
    ),
    body: Column(
      children: [
        EasyCompButton(
          width: 50,
          height: 35,
          child: const Icon(Icons.warning_amber_outlined),
          onPressed: () async {
            final cl = EasyCompLoading(context: context);
            try {
              cl.show(
                max: 50,
                msg: "Enviando",
                typeTheme: EasyCompLoadingTypeTheme.two,
              );
              for (var i = 0; i < 50; i++) {
                await Utils.delay2(milliseconds: 200);
                cl.update(value: i + 1, msg: "Enviando ${i + 1}");
                if (i == 26) {
                  throw Exception("Error");
                }
              }
              cl.updateAndClose(
                msg: "Sucesso",
                timeOut: 400,
              );
            } catch (e) {
            } finally {
              cl.close();
            }
          },
        ),
        Text(
          "Estilizando de acordo com o thema",
          style: context.textApp.textBold.copyWith(
            fontSize: 25,
            color: context.colors.primary,
          ),
        ),
        EasyCompInputCalendar(
          onChange: (data) {
            print(data);
          },
        ),
        const SizedBox(height: 30),
        EasyCompInputCalendar.multiplos(
          labelText: "Date Range",
          onChange: (data1, data2) {
            print(data1);
            print(data2);
          },
        ),
        const SizedBox(height: 30),
        EasyCompInput(
          labelText: "Input text",
          onChange: (data1) {
            print(data1);
          },
          icon: const Icon(Icons.search),
        ),
        const SizedBox(height: 10),
        EasyCompInput(
          labelText: "Input password",
          isPassword: true,
          onChange: (data1) {
            print(data1);
          },
          validator: (v) {},
        ),
        const SizedBox(height: 10),
        Row(
          crossAxisAlignment: CrossAxisAlignment.start,
          children: [
            Expanded(
              child: EasyCompInput(
                labelText: "Input cpfOrCnpj",
                typeInput: EasyCompInputType.cpfOrCnpj,
                onChange: (data1) {
                  print(data1);
                },
                validator: (v) {},
                withValidation: true,
                icon: const Icon(Icons.search),
              ),
            ),
            Expanded(
              child: EasyCompInput(
                labelText: "Input cpfOrCnpj",
                typeInput: EasyCompInputType.cpfOrCnpj,
                onChange: (data1) {
                  print(data1);
                },
                validator: (v) {},
                withValidation: true,
              ),
            ),
            EasyCompButton(
              width: 50,
              height: 35,
              child: const Icon(Icons.search),
              onPressed: () {},
            ),
          ],
        ),
        const SizedBox(height: 10),
        EasyCompInput.future(
          labelText: "Input cep",
          typeInput: EasyCompInputType.cep,
          onChange: (data1) {
            print(data1);
          },
          validator: ValidatorUtil(isFuture: true).required().custom(
            future: (value) async {
              Utils.delay(3);
              return true;
            },
          ).buildFuture(),
          withValidation: true,
        ),
        const SizedBox(height: 10),
        EasyCompInput.future(
          labelText: "Input cpf",
          typeInput: EasyCompInputType.cpf,
          onChange: (data1) {
            print(data1);
          },
        )
      ],
    ),
  );
}