Skip to content
View a-hamouda's full-sized avatar
  • Alexandria, Egypt

Highlights

  • Pro
Block or Report

Block or report a-hamouda

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 Loading

  1. valid_forms valid_forms Public

    Dart form validation.

    Dart

  2. change_notifier_builder change_notifier_builder Public

    Simple flutter state management library.

    Dart

  3. Console-MineSweeper Console-MineSweeper Public

    Minesweeper in the console

    Kotlin

  4. go_gary go_gary Public

    2D game built with p5js.

    TypeScript

  5. travel_app travel_app Public

    Trips app UI demo following clean architecture.

    Dart

  6. Either in dart Either in dart
    1
    class Either<L, R> {
    2
      final L? _left;
    3
      final R? _right;
    4
    
    
    5
      const Either._({L? left, R? right})