Flutter/Dart: Convert HEX color string to Color?

前端 未结 5 821
醉酒成梦
醉酒成梦 2020-12-10 02:24

Our database has colors saved as a String like \"#AABBCC\" and so I\'m basically looking for a function like this: Color.parseColor(\"#AABBCC\"); f

相关标签:
5条回答
  • 2020-12-10 03:04

    I ended up doing it this way:

    hexStringToHexInt(String hex) {
      hex = hex.replaceFirst('#', '');
      hex = hex.length == 6 ? 'ff' + hex : hex;
      int val = int.parse(hex, radix: 16);
      return val;
    }
    
    0 讨论(0)
  • 2020-12-10 03:05

    1- Install Hexcolor plugin

    dependencies:
      flutter:
        sdk: flutter
      hexcolor: ^1.0.4
    

    2- Import the plugin in your class

    import 'package:hexcolor/hexcolor.dart';
    

    Now Use the plugin like this,

    Container(
              color: Hexcolor("#0EBB64"),
              child: Center(child: Image.asset("images/marker.png",width: 100,height: 100,),),
            )
    
    0 讨论(0)
  • 2020-12-10 03:11

    A simple string replacement would get it in the right syntax:

    String html_colour = '#AAABBCC';
    String fixed_colour = html_colour.replace(new RegExp(r'#'), '0xFF');
    

    That should do it.

    0 讨论(0)
  • 2020-12-10 03:15

    I'm using this function in my project which handles converting the hex string to a Color.

    Color hexToColor(String hexString, {String alphaChannel = 'FF'}) {
      return Color(int.parse(hexString.replaceFirst('#', '0x$alphaChannel')));
    }
    

    The idea here is that now you can pass this function a hex string which is something like this '#ffffff' in addition to that you can pass an alpha channel. What alpha channel does is it handles the opacity of your color and you can pass it to Color directly.

    About alpha channels the FF part is a hex representation of 0-100 is like:

    0 = 00 1 = 03 2 = 05 ... 9 = 17 ... 10 = 1A 11 = 1C 12 = 1F ... 99 = FC 100 = FF

    Let's assume you want to convert #000000 into a Color and have a 0.1 opacity on it. You can simply call this function like this:

    hexToColor('#000000', alphaChannel: '1A');
    

    And if you just call it like this:

    hexToColor('#000000');
    

    Then it will only return you a black color with 1 opacity. Hope this will help to anyone wondering how to handle opacity and color handling a bit more further.

    0 讨论(0)
  • 2020-12-10 03:27
    /// Construct a color from a hex code string, of the format #RRGGBB.
    Color hexToColor(String code) {
      return new Color(int.parse(code.substring(1, 7), radix: 16) + 0xFF000000);
    }
    
    0 讨论(0)
提交回复
热议问题