sizedBoxExtension top-level constant

String const sizedBoxExtension

Implementation

const sizedBoxExtension = """
import 'package:flutter/material.dart';

extension SizedBoxes on int {
   SizedBox sbh() => SizedBox(height: toDouble());
   SizedBox sbw() => SizedBox(width: toDouble());
}
""";