iloma_test_app 0.0.1 iloma_test_app: ^0.0.1 copied to clipboard
This is the sample project.
TODO: This is a sample project
Features #
TODO: This will create an container for you
Getting started #
TODO: you should have an idea of container
Usage #
TODO: @override Widget build(BuildContext context) { return const Scaffold( body: CustomContainer( height: 200, width: 200, padding: EdgeInsets.all(10), title: 'Test', ), ); } }
const like = 'sample';
Example #
There are number of properties you can modify -height -width -title -subtitle -gradient
import 'package:custom_package/custom_package.dart'; import 'package:flutter/material.dart'; class Test extends StatelessWidget { const Test({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return const Scaffold( body: CustomContainer( height: 200, width: 200, padding: EdgeInsets.all(10), title: 'Test', ), ); } } |