Skip to content
View AngDrew's full-sized avatar
🐢
Slowly but Sure
🐢
Slowly but Sure
  • Surabaya

Highlights

  • Pro

Block or report AngDrew

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. AngDrew AngDrew Public

  2. angdrew.github.io angdrew.github.io Public

    HTML

  3. Highly customizable TextField Highly customizable TextField
    1
    import 'package:flutter/material.dart';
    2
    import 'package:flutter/services.dart';
    3
    import 'package:flutter_screenutil/flutter_screenutil.dart';
    4
    import '../resources/r.dart';
    5
    
                  
  4. preload flutter image for splash scr... preload flutter image for splash screen. so there will be no blank screen blink
    1
    // @dart=2.12
    2
    // load_image.dart
    3
    import 'dart:async';
    4
    import 'dart:ui';
    5
    
                  
  5. flutter extensions flutter extensions
    1
    extension AutoCompleteOnList<T> on List<T> {
    2
      List<String> autoCompleteOnList(String query) {
    3
        return where((T element) {
    4
          String option = element.toString();
    5