igot_ui_module 0.0.1
igot_ui_module: ^0.0.1 copied to clipboard
This package provides UI components that are used in IGOT projects.
example/example.dart
import 'package:flutter/material.dart';
import 'package:igot_ui_module/ui/widgets/microsite_insight/microsite_insight_skeleton.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
children: [
MicroSiteInsightSkeleton(
itemHeight: 150,
itemWidth: MediaQuery.of(context).size.width,
),
],
),
),
);
}
}