file_case 0.0.2 file_case: ^0.0.2 copied to clipboard
A flutter package to show uplaoded files in a scrollable widget.
import 'package:example/example.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'File Case Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Home(),
);
}
}