[go: nahoru, domu]

Skip to content

super_extensions is a package that contains different widely used extension methods. This package/project is completely open-source so anyone can freely open a PR if you feel something is missed out.

License

Notifications You must be signed in to change notification settings

deepraj02/super_extensions

 
 

Repository files navigation

Super Extensions codecov

GitHub contributors GitHub stars

Introduction

We all love shortcode that does the work. So dart has provided a great feature called Extension Methods which you can use on different data types! What are Extension Methods exactly? Extension methods add functionality to existing libraries. You might use extension methods without even knowing it. For example, when you use code completion in an IDE, it suggests extension methods alongside regular methods. (Reference)

What is this package about?

We probably use lots of extension methods in our project. So, this package combines all the extension methods that are used on daily basis and make them available to you under a single package so that you can reuse them in multiple packages.

Getting started

To learn more about Extension Methods, feel free to check this article.

List of Extensions

In this package, right now we have the following extension methods:

  • Extensions on BuildContext:
    • void showSnackBar(SnackBar snackBar)
    • void showNewDialog(Widget child)
    • double get screenHeight
    • double get screenWidth
    • bool get isMobile
    • bool get isTablet
    • bool get isDesktop
    • void push(Widget className)
    • void pushReplacement(Widget className)
    • void pushNamed(String path)
    • void pushReplacementNamed(String path)
    • void pushAndRemoveUntil(Widget className)
    • void pushNamedAndRemoveUntil(String path)
    • Future<bool> maybePop()
    • void pop()
    • void popAndPushNamed(String path)
    • EdgeInsets padding
    • EdgeInsets viewPadding
    • EdgeInsets viewInsets
  • Extensions on String:
    • String capitaliseFirstChar()
    • String capitaliseEachWordFirstChar()
    • Future<void> copyToClipboard()
    • bool isPalindrome
    • String reversed

  • Extensions on num:
    • SizedBox hSizedBox
    • SizedBox wSizedBox

  • Extension on Iterable
    • Iterable<Widget> separator(Widget element)

Contribution Information

If you feel that there can be any other extension methods, feel free to create a PR for the same and I would love to add it to the package 💙

About

super_extensions is a package that contains different widely used extension methods. This package/project is completely open-source so anyone can freely open a PR if you feel something is missed out.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 52.9%
  • C++ 21.5%
  • CMake 18.3%
  • Swift 1.8%
  • HTML 1.7%
  • C 1.6%
  • Other 2.2%