THIS SITE IS A WIP THIS SITE IS A WIP THIS SITE IS A WIP THIS SITE IS A WIP THIS SITE IS A WIP
it's just one.
function render(BuildContext context) {
    return Container(
        // mb10
        margin: EdgeInsets.only(bottom: 10),
        // grd b/w top t b
        decoration: BoxDecoration(
            gradient: LinearGradient(
                colors: [Colors.black, Colors.white],
                begin: Alignment.topCenter,
                end: Alignment.bottomCenter,
            ),
        ),
        child: Text('Hello World'),
    );
}

Custom Emmets

Like existing emmets in HTML & CSS, inline suggestions can expand valid emmets (mb10margin bottom, 10px) as well as pseudo-emmets (grd b/w top t bgradient black & white, top to bottom) completely language agnostic.

– Be human. Be kind. Do better.