Moved to https://github.com/AlexV525/dartpad_workshops/tree/main/implement_lazy_indexed_stack permanentely.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// | |
| /// [Author] Alex (https://github.com/AlexV525) | |
| /// [Date] 2021-04-30 12:41 | |
| /// | |
| import 'dart:math' as math; | |
| import 'dart:ui'; | |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// | |
| /// [Author] Alex (https://github.com/AlexV525) | |
| /// [Date] 4/2/21 12:48 PM | |
| /// | |
| import 'dart:math' as math; | |
| import 'dart:ui'; | |
| import 'package:flutter/material.dart'; | |
| void main() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// | |
| /// [Author] Alex (https://github.com/AlexV525) | |
| /// [Date] 11/26/20 4:31 PM | |
| /// | |
| import 'dart:convert'; | |
| import 'dart:core'; | |
| import 'package:flutter/foundation.dart'; | |
| import 'package:equatable/equatable.dart'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// | |
| /// [Author] Alex (https://github.com/AlexV525) | |
| /// [Date] 2/15/21 22:30 PM | |
| /// | |
| import 'dart:math' as math; | |
| extension StringEndsWithRegEx on String { | |
| bool endsWithPattern(Pattern other) { | |
| if (other is String) { | |
| return endsWith(other); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// | |
| /// [Author] Alex (https://github.com/AlexV525) | |
| /// [Date] 2020-12-26 11:51 | |
| /// | |
| import 'dart:async'; | |
| import 'package:flutter/foundation.dart'; | |
| /// ι²ζεθζ΅ | |
| /// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Author: Alex Li (https://github.com/AlexV525) | |
| // Date: 2025/10/10 | |
| import 'dart:typed_data'; | |
| import 'dart:ui' as ui; | |
| import 'package:flutter/rendering.dart'; | |
| import 'package:flutter/widgets.dart'; | |
| /// Create an image from given [GlobalKey], which is attached to an exist |
βββ βββββββ βββββββββββββ ββββ
βββ ββββββββ ββββββββββββββ βββββ
βββ βββ ββββ βββ βββββββββββ
βββ βββ βββ βββ βββββββββββ
βββββββββββββββββ βββ βββ βββ βββ
ββββββββ βββββββ βββ βββ βββ
Moved to AlexV525/effective_flutter .