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

Block or report shinayser

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. ShinayserEssentialsFlutter ShinayserEssentialsFlutter Public

    Dart 3

  2. dartx dartx Public

    Forked from simc/dartx

    Superpowers for Dart. Collection of useful static extension methods.

    Dart 1

  3. Download file with progress in Dart/... Download file with progress in Dart/Flutter using 'http' package
    1
    import 'dart:async';
    2
    import 'dart:io';
    3
    
                  
    4
    import 'package:http/http.dart' as http;
    5
    
                  
  4. A function that converts a ValueList... A function that converts a ValueListenable to a Stream
    1
    Stream<T> valueListenableToStreamAdapter<T>(ValueListenable<T> listenable) {
    2
      StreamController<T> controller;
    3
    
                  
    4
      void listener() {
    5
        controller.add(listenable.value);