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 (
mb10
→margin bottom, 10px
) as well as pseudo-emmets (grd b/w top t b
→gradient black & white, top to bottom
) completely language agnostic.