yuni_file_list_view 0.1.0 copy "yuni_file_list_view: ^0.1.0" to clipboard
yuni_file_list_view: ^0.1.0 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(),
    );
  }
}
1
likes
0
points
921
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package providing flexible file list view components: grid, list, and grouped grid layouts with Sliver support.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_sticky_header, sliver_tools

More

Packages that depend on yuni_file_list_view