colors_espanol 1.0.0+1 copy "colors_espanol: ^1.0.0+1" to clipboard
colors_espanol: ^1.0.0+1 copied to clipboard

outdated

This Flutter project turns Colors.red and all other colors into spanish. Instead of Colors.red, you'd use Colores.rojo, Colores.azul, Colores.verde, Colors.etc. Every color has been translated, and th [...]

colors_espanol #

This package translates Colors and its methods to Spanish. ex: Colors.red = Colores.rojo ALL colors have been translated.

Este paquete traduce Colors y sus metodos a español. ej: Colors.red = Colores.rojo.

Author/Autor: josephvisaac@gmail.com

Specific Example/Ejemplo Especifico: #

color: Colores.rojo,

Chart #

English Español
Colors. Colores.
red rojo
pink rosado
purple morado
deepPurple moradoProfundo
indigo indigo
blue azul
lightBlue, claroAzul
cyan cian
teal verdeAzulado
green, verde
lightGreen claroVerde
lime lima
yellow amarillo
amber ambar
orange naranja
deepOrange naranjaProfundo
brown marron
black negro
grey gris
transparent transparente
redAccent rojoAcento
pinkAccent rosadoAcento
purpleAccent moradoAcento
deepPurpleAccent moradoProfundoAcento
indigoAccent indigoAcento
blueAccent azulAcento
lightBlueAccent claroAzulAcento
cyanAccent cianAcento
tealAccent verdeAzuladoAcento
greenAccent verdeAcento
lightGreenAccent claroVerdeAcento
limeAccent limaAcento
yellowAccent amarilloAcento
amberAccent ambarAcento
orangeAccent naranjaAcento
deepOrangeAccent naranjaProfundoAcento

Ejemplo de Codigo/ Code Example #

import 'package:colors_espanol/colores.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      // color: Colores.amarillo,
      theme: ThemeData(
        primaryColor: Colores.amarillo, //yellow
      ),
      home: Scaffold(
        appBar: AppBar(
          centerTitle: true,
          title: Text('Amarillo'),
        ),
        body: Center(
     
          // color: Colors.,
          child: Container(
          padding: EdgeInsets.only(top:40),
          height: 100,
          width: 100,
            // color: Colores.lima,
            // color: Colores.azulAcento,
            // color: Colores.amarillo,
            // color: Colores.negro,
            // color: Colores.gris,
            color: Colores.rojo,
          ),
           
        ),
      ),
    );
  }
}

Foto del Ejemplo/Example Pic #

Image of Code

note/nota #

Enjoy! !Disfruten!
josephvisaac@gmail.com
3
likes
0
pub points
0%
popularity

Publisher

unverified uploader

This Flutter project turns Colors.red and all other colors into spanish. Instead of Colors.red, you'd use Colores.rojo, Colores.azul, Colores.verde, Colors.etc. Every color has been translated, and this includes the shades like black##. It works identically do Colors except it isn't available for the ThemeData sadly, but it works for any other Widget that isn't directly affecting the Material App theme. It works on Containers of all shapes and types. Use it like a regular Colors widget. Este paquete funciona identicamente a Colors. Usenlo como usan Colors. Todos los colores han sido traducidos. Green es verde, orange es naranja, pink es rosado, marron es brown, etcetera. Disfruten:)

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on colors_espanol