flutterzilla_fixed_grid 0.0.4
flutterzilla_fixed_grid: ^0.0.4 copied to clipboard
Default Flutter gridview changes the ratio of it's container based on the screen sizes. So, in small screen your gridview may look fine but in bigger screen it may look bad or vice versa. This package [...]
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutterzilla_fixed_grid/flutterzilla_fixed_grid.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
SystemChrome.setSystemUIOverlayStyle(
const SystemUiOverlayStyle(statusBarColor: Colors.transparent));
return const MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutterzilla Fixed grid',
home: MyHomePage(title: 'Flutterzilla Fixed grid'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(
widget.title,
style: const TextStyle(color: Colors.grey, fontSize: 17),
),
backgroundColor: Colors.white,
elevation: 0,
),
body: Container(
padding: const EdgeInsets.symmetric(horizontal: 20),
child: GridView.builder(
gridDelegate: const FlutterzillaFixedGridView(
crossAxisCount: 2,
mainAxisSpacing: 20,
crossAxisSpacing: 20,
height: 143),
padding: const EdgeInsets.only(top: 30),
itemCount: 6,
shrinkWrap: true,
clipBehavior: Clip.none,
physics: const NeverScrollableScrollPhysics(),
itemBuilder: (context, index) {
return InkWell(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
onTap: () {},
child: Container(
alignment: Alignment.center,
decoration: BoxDecoration(
color: Colors.purple,
borderRadius: BorderRadius.circular(8),
boxShadow: [
BoxShadow(
color: Colors.purple.withOpacity(0.32),
spreadRadius: -2,
blurRadius: 13,
offset: const Offset(0, 8), // changes position of shadow
),
],
),
padding:
const EdgeInsets.symmetric(horizontal: 19, vertical: 15),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: const [
Icon(
Icons.ac_unit,
size: 25,
color: Colors.white,
),
SizedBox(
height: 8,
),
Text(
"Software Engineers",
textAlign: TextAlign.left,
maxLines: 2,
overflow: TextOverflow.ellipsis,
style: TextStyle(
color: Colors.white,
fontSize: 15,
fontWeight: FontWeight.bold,
),
),
SizedBox(
height: 8,
),
Text(
"20 Chapters",
textAlign: TextAlign.center,
maxLines: 2,
overflow: TextOverflow.ellipsis,
style: TextStyle(
color: Colors.white,
fontSize: 12,
),
),
],
),
),
);
},
),
),
);
}
}