Skip to content

Instantly share code, notes, and snippets.

View Jay-flow's full-sized avatar
🎯
Focusing

Jay-flow Jay-flow

🎯
Focusing
View GitHub Profile
@Jay-flow
Jay-flow / dynamic_link.dart
Created May 7, 2022 08:33
Implement dynamic links in the Flutter
@Jay-flow
Jay-flow / overflow_text.dart
Created May 13, 2022 07:21
To add 'more' text functionality for the text widget in Flutter
import 'package:artcalendar/widgets/empty.dart';
import 'package:flutter/material.dart';
import 'badge.dart';
class OverflowText extends StatefulWidget {
const OverflowText({
Key? key,
required this.text,
required this.maxLength,
}) : super(key: key);