Skip to content
View AnnaPS's full-sized avatar
πŸ¦„
Fluttering
πŸ¦„
Fluttering

Block or report AnnaPS

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
AnnaPS/README.md

Hi there, I'm Ana Polo

πŸ¦„πŸ¦„πŸ¦„ I'm a Software Engineer II at Very Good Ventures πŸ¦„πŸ¦„πŸ¦„

vgv logo

Technical writer on Medium. I love programming, learning new things and playing video games.

As a programmer, I enjoy learning new things and improving my knowledge.

I'm co-organizer of Flutter Spain and Flutter Madrid communities and also I'm part of a Flutteristas group.

Glad to see you here! Β 

Talking about Personal Stuffs:

  • πŸ¦„ Software Engineer II at @VGVentures.
  • πŸš€ I’m co-organizer of Flutter Spain and Flutter Madrid communities.
  • πŸ’œ I’m a Flutterista.
  • πŸ‡ΊπŸ‡Έ I'm learning English.
  • πŸ’¬ Ask me about anything, I' happy to help.
  • πŸ“ I write articles on medium.

Packages on Pub Dev


πŸ“ˆ My GitHub Stats:

Twitter Badge Medium Badge Linkedin Badge

Pinned Loading

  1. VGVentures/supabase_example VGVentures/supabase_example Public

    An example Flutter application built with Very Good CLI and Supabase πŸ¦„

    Dart 77 17

  2. infogames infogames Public

    Dart 186 66

  3. cats_flutter_bloc cats_flutter_bloc Public

    Dart 8 3

  4. dni_nie_validator dni_nie_validator Public

    Dart 6 3

  5. BorderAnimationRoundCircle BorderAnimationRoundCircle
    1
    //try it on dartpad -> https://dartpad.dev/?id=c10652caa336d17362394623d0c0028e
    2
    
                  
    3
    
                  
    4
    import 'package:flutter/material.dart';
    5
    
                  
  6. state_status_template.dart state_status_template.dart
    1
    enum StateStatus { initial, success, error, loading }
    2
    
                  
    3
    extension StateStatusX on StateStatus {
    4
      bool get isInitial => this == StateStatus.initial;
    5
      bool get isSuccess => this == StateStatus.success;