This package helps to use our custom widgets and functions in varius situations

Features

- create custom widgets
- create custom functions

Getting started

import 'package:sy_customs/sy_customs.dart';

Usage

void syCustomLoadingBox(BuildContext context, String title) {
  showDialog(
    context: context,
    builder: (BuildContext context) {
      return AlertDialog(
        title: Text(title),
        content: const LinearProgressIndicator(),
      );
    },
  );
}

Additional information

if you have any issues or sugestions to this package feel free to contact sydeveloperslk@gmail.com

Libraries

sy_customs