Last updated:
0 purchases
iloma test app
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';
copied to clipboard
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',
),
); } }
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.