yuni_file_list_view 0.1.7
yuni_file_list_view: ^0.1.7 copied to clipboard
A Flutter package providing flexible file list view components: grid, list, and grouped grid layouts with Sliver support.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'pages/home_page.dart';
void main() {
runApp(const ExampleApp());
}
class ExampleApp extends StatelessWidget {
const ExampleApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'YuniFileListView Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: const Color(0xFF1A73E8)),
useMaterial3: true,
appBarTheme: const AppBarTheme(
centerTitle: true,
backgroundColor: Color(0xFF1A73E8),
foregroundColor: Colors.white,
),
),
home: const DemoHomePage(),
);
}
}