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 103 commits βββββββββββββββββββββ 15.6% | |
π Daytime 235 commits βββββββββββββββββββββ 35.7% | |
π Evening 188 commits βββββββββββββββββββββ 28.5% | |
π Night 133 commits βββββββββββββββββββββ 20.2% |
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
// ignore_for_file: avoid_print | |
// Input: [[1, 2], [3, 4]] | |
// Desired output: [3,1, 3,2, 4,1, 4,2] | |
void main() { | |
List<List<int>> nestedArray = [ | |
[1, 2], | |
[3, 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
// Copyright 2021, Thea Choem, All rights reserved. | |
import 'package:badges/badges.dart'; | |
import 'package:flutter/material.dart'; | |
class CustomTabBarItem { | |
final String label; | |
final String? value; | |
CustomTabBarItem({ |
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
// Copyright 2021, Thea Choem, All rights reserved. | |
import 'dart:ui'; | |
import 'package:flutter/material.dart'; | |
typedef WrapperBuilder = Widget Function( | |
BuildContext context, | |
VoidCallback callback, | |
); |
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
// Copyright 2021, Thea Choem, All rights reserved. | |
import 'package:flutter/material.dart'; | |
enum TapEffectType { | |
touchableOpacity, | |
scaleDown, | |
} | |
class CustomTapEffect extends StatefulWidget { |
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
// Copyright 2021, Thea Choem, All rights reserved. | |
import 'dart:ui'; | |
import 'package:flutter/gestures.dart'; | |
import 'package:flutter/material.dart'; | |
class PlayStoreTabView extends StatelessWidget { | |
const PlayStoreTabView({ | |
Key? key, | |
this.children = const [], |