Skip to content

Instantly share code, notes, and snippets.

View tejaswini-dev-techie's full-sized avatar
🎯
Focusing

Tejaswini D tejaswini-dev-techie

🎯
Focusing
  • Bangalore
View GitHub Profile
@tejaswini-dev-techie
tejaswini-dev-techie / inverted_triangle_curved_tip_gist.dart
Created June 30, 2023 09:41
Inverted Triangle with a Curved Tip Point in Flutter
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: InvertedTriangleWithCuryTipPoint(),
),
);
}
@tejaswini-dev-techie
tejaswini-dev-techie / progressive_shade_animation_gist.dart
Last active July 30, 2024 12:28
Progressive Shade Animation in Flutter
import 'package:flutter/material.dart';
void main() {
runApp(
const MaterialApp(
home: AnimatedButton(),
),
);
}