Skip to content
View hectorAguero's full-sized avatar

Block or report hectorAguero

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  1. loadable_buttons loadable_buttons Public

    Provides enhanced buttons with built-in loading states, async functionality and customizable transitions

    Dart 1

  2. Flutter Android Transparent Navigati... Flutter Android Transparent Navigation Bar
    1
    import 'package:flutter/material.dart';
    2
    import 'package:flutter/services.dart';
    3
    import 'package:shared_preferences/shared_preferences.dart';
    4
    
                  
    5
    Future<void> main() async {
  3. BehindNavbar example BehindNavbar example
    1
    import 'package:flutter/material.dart';
    2
    
                  
    3
    final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
    4
    
                  
    5
    void main() {
  4. Different ways to show or not show n... Different ways to show or not show null Strings in Text Widgets in Flutter
    1
    import 'package:flutter/material.dart';
    2
    
                  
    3
    void main() {
    4
      runApp(MyApp());
    5
    }
  5. Flutter Cupertino Flutter Cupertino
    1
    import 'package:flutter/cupertino.dart';
    2
    import 'package:flutter/material.dart';
    3
    import 'package:intl/intl.dart';
    4
    
                  
    5
    void main() => runApp(const MyApp());