Skip to content
View dipendra-sharma's full-sized avatar
Block or Report

Block or report dipendra-sharma

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. imaNNeo/fl_chart imaNNeo/fl_chart Public

    FL Chart is a highly customizable Flutter chart library that supports Line Chart, Bar Chart, Pie Chart, Scatter Chart, and Radar Chart.

    Dart 6.5k 1.7k

  2. OneSignal/react-native-onesignal OneSignal/react-native-onesignal Public

    React Native Library for OneSignal Push Notifications Service

    TypeScript 1.6k 368

  3. A reusable Flutter widget that effic... A reusable Flutter widget that efficiently rebuilds when the underlying data changes, supporting various data sources like ValueListenable, Listenable.
    1
    import 'package:flutter/foundation.dart';
    2
    import 'package:flutter/widgets.dart';
    3
    
                  
    4
    typedef Selector<T, V> = V Function(T value);
    5
    typedef WidgetReBuilder<T> = Widget Function(
  4. Discover a streamlined approach to d... Discover a streamlined approach to dependency injection with this Dart Service Locator Gist, designed to enhance your Flutter or Dart applications. This robust pattern simplifies dependency management, promoting clean architecture and maintainable code. The ServiceLocator class empowers developers to register dependencies and retrieve service instances with ease, offering both singleton and factory-based instance creation. Ideal for decoupling components and boosting testability, this Gist is a must-have for developers seeking a lightweight, no-frills solution for their project's dependency management needs. Implement this Service Locator to elevate your app's structure and maintainability.
    1
    class _ServiceLocator {
    2
      final Map<Type, dynamic> _singletons = <Type, dynamic>{};
    3
      final Map<Type, Function> _factories = <Type, Function>{};
    4
    
                  
    5
      // Private constructor