Skip to content
View gitcarlosandrade's full-sized avatar
πŸ‡§πŸ‡·
Building a better place
πŸ‡§πŸ‡·
Building a better place
Block or Report

Block or report gitcarlosandrade

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

Hi there πŸ‘‹

  • πŸ‡§πŸ‡· Brazilian
  • πŸ‡²πŸ‡Ή Living in Malta
  • πŸš€ I’m currently working on projects using Flutter in a high-level team
  • πŸ‘― I’m looking to collaborate on projects that have social impact

Top Langs

Linkedin

Pinned Loading

  1. This Dart function, colorFromWord, i... This Dart function, colorFromWord, ingeniously generates unique colors for any given word. It's designed to produce a wide spectrum of vivid colors, with an optional parameter to force lighter shades. The algorithm combines the hash code of the word with values derived from the word's characters, ensuring distinct and vibrant colors for different words. Ideal for use in UIs where you need to assign specific colors to text elements (like tags or categories) for easy visual distinction. This approach guarantees that each word is consistently represented by the same color across your application.
    1
    	// Generates a color from a given word.
    2
      Color colorFromWord(String word, {bool forceLight = false}) {
    3
        // Lightness modifier, ensuring light colors if forceLight is true.
    4
        final lightMod = forceLight ? 190 : 0;
    5
    
    
  2. flutter_tex flutter_tex Public

    Forked from shah-xad/flutter_tex

    A Flutter Package to render Mathematics, Physics and Chemistry Equations based on LaTeX

    JavaScript

  3. AnalyticsRouteObserver is a custom N... AnalyticsRouteObserver is a custom NavigatorObserver that automatically tracks page navigation events in a Flutter application and sends these events to Firebase Analytics. It also provides functionality for manually logging specific routes.
    1
    import 'package:flutter/material.dart';
    2
    
    
    3
    /// AnalyticsRouteObserver is a custom NavigatorObserver that
    4
    /// automatically tracks page navigation events in a Flutter application
    5
    /// and sends these events to Firebase Analytics.
  4. android-architecture android-architecture Public

    Forked from android/architecture-samples

    A collection of samples to discuss and showcase different architectural tools and patterns for Android apps.