Skip to content

Instantly share code, notes, and snippets.

View TahaTesser's full-sized avatar

Taha Tesser TahaTesser

View GitHub Profile
@TahaTesser
TahaTesser / Flutter Network.md
Last active February 18, 2025 22:28
A collection of active Flutter YouTube content creators, newsletters and blogs, personalities, and platforms. If you've suggestions for active content creators, please comment below.
@TahaTesser
TahaTesser / flipping_card_sample.dart
Created January 5, 2025 19:11
Flipping Card Sample in Flutter
import 'dart:async';
import 'dart:math';
import 'package:flutter/material.dart';
void main() {
runApp(const MaterialApp(
home: FlipperSample(),
));
}
@TahaTesser
TahaTesser / main.dart
Created May 26, 2024 21:59
Intrinsic Horizontal Stadium from Flutter Badge widget source code
import 'dart:math' as math;
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
@TahaTesser
TahaTesser / main.dart
Last active June 30, 2024 21:59
MatrixTransition demo with rotateX, rotateY, & rotateZ matrices
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:window_manager/window_manager.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await windowManager.ensureInitialized();
const WindowOptions windowOptions = WindowOptions(
@TahaTesser
TahaTesser / main.dart
Created February 17, 2024 10:53
Material 3 Durations demo
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}