Skip to content

Instantly share code, notes, and snippets.

View H3mnz's full-sized avatar

H3mnz H3mnz

View GitHub Profile
@H3mnz
H3mnz / thumbnail_generator.dart
Created August 28, 2024 11:17
Get Thumbnail from File in Windows with Dart
import 'dart:developer';
import 'dart:typed_data';
import 'package:windows_storage/windows_storage.dart';
class ThumbnailGenerator {
ThumbnailGenerator._();
static Future<Uint8List> generate(String path) async {
try {
@H3mnz
H3mnz / font_installer.dart
Last active August 28, 2024 11:08
Install Font in Windows with Dart
import 'dart:async';
import 'dart:developer';
import 'dart:io';
import 'package:path/path.dart';
import 'package:win32_registry/win32_registry.dart';
class FontInstaller {
FontInstaller._();
@H3mnz
H3mnz / simple_flutter_top_sheet.dart
Last active February 11, 2022 18:45
Simple Flutter TopSheet
import 'dart:developer';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@H3mnz
H3mnz / toggle_bottom_navigation_bar.dart
Last active February 11, 2022 07:33
Hiding and Showing BottomNavidationBar in Flutter Scrollable Widgets
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
const List<String> photos = [
'https://wallpapershome.com/images/pages/ico_h/23954.jpeg',
'https://wallpapershome.com/images/pages/ico_h/23959.jpg',
'https://wallpapershome.com/images/pages/ico_h/23952.jpeg',
'https://wallpapershome.com/images/pages/ico_h/23348.jpg',
'https://wallpapershome.com/images/pages/ico_h/23938.jpeg',