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] 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] 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] 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
π Morning 178 commits βββββββββββββββββββββ 15.8% | |
π Daytime 503 commits βββββββββββββββββββββ 44.6% | |
π Evening 396 commits βββββββββββββββββββββ 35.1% | |
π Night 51 commits βββββββββββββββββββββ 4.5% |
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
// Use https://gist.github.com/AlexV525/5aff2a1621482e11abc8e97d88200ac1 instead. |
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/10/13 14:36 | |
/// | |
import 'dart:math' as math; | |
import 'package:flutter/rendering.dart'; | |
import 'package:flutter/widgets.dart'; | |
@immutable |
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/10/22 18:38 | |
/// | |
import 'dart:async'; | |
import 'package:meta/meta.dart'; | |
void main() { | |
_initObservers(); |
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] 2022/03/07 23:25 | |
/// | |
import 'dart:async'; | |
import 'dart:io'; | |
import 'package:device_info_plus/device_info_plus.dart'; | |
import 'package:flutter/gestures.dart'; | |
import 'package:flutter/material.dart'; |