| 12345678910 |
- import 'package:flutter/material.dart';
- extension ColorX<T extends Widget> on T{
- Container backgroundColor(Color color){
- return Container(child: this,color: color,);
- }
- Container backgroundColorInt(int color){
- return Container(child: this,color: Color(color),);
- }
- }
|