XamlCSS icon indicating copy to clipboard operation
XamlCSS copied to clipboard

Support Sass-like Functions

Open warappa opened this issue 9 years ago • 0 comments

Support functions

@function bind($property, $converter) {
    @if ($converter) {
        @return "{" + $property +", Converter=" + $converter + "}";
    }
    @else {
        @return "{" + $property + "}";
    }
}

Button {
    BackgroundColor: @bind(Color);
}

warappa avatar Jan 24 '17 21:01 warappa