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
| license: gpl-3.0 | |
| height: 1080 | |
| border: no | |
| scrolling: no |
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
| Date | PR5 | PR25 | PR50 | PR75 | PR95 | |
|---|---|---|---|---|---|---|
| 2018/12/21 | 483 | 752 | 1043 | 2087 | 3658 | |
| 2018/12/22 | 466 | 725 | 960 | 1928 | 3664 | |
| 2018/12/23 | 423 | 736 | 972 | 1814 | 3778 | |
| 2018/12/24 | 484 | 738 | 1025 | 2031 | 3752 | |
| 2018/12/25 | 705 | 1218 | 1556 | 2395 | 3322 | |
| 2018/12/26 | 597 | 1098 | 1372 | 1906 | 4252 | |
| 2018/12/27 | 230 | 852 | 1399 | 2208 | 3292 | |
| 2018/12/28 | 635 | 1057 | 1568 | 2670 | 3725 | |
| 2018/12/29 | 1118 | 1434 | 1716 | 2860 | 4378 |
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
| // https://imgur.com/a/S7ekfb6 demonstrates a problem with the simulator below | |
| // https://github.com/Skyost | |
| /// A scroll physics that always lands on specific points. | |
| class MagnetScrollPhysics extends ScrollPhysics { | |
| /// The fixed item size. | |
| final double itemSize; | |
| /// Creates a new magnet scroll physics instance. | |
| MagnetScrollPhysics({ |
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
| stateDiagram-v2 | |
| [*] --> auth_signin | |
| [*] --> auth_signup | |
| # [*] --> auth_signout | |
| # [*] --> auth_reset | |
| # [*] --> auth_delete | |
| # [*] --> auth_confirm | |
| [*] --> deeplink |
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
| const amplifyconfig = ''' { | |
| "UserAgent": "aws-amplify-cli/2.0", | |
| "Version": "1.0", | |
| "analytics": { | |
| "plugins": { | |
| "awsPinpointAnalyticsPlugin": { | |
| "pinpointAnalytics": { | |
| "appId": "...", | |
| "region": "us-east-1" | |
| }, |
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
| ➜ npm -v && node -v && git --version | |
| 8.6.0 | |
| v16.13.1 | |
| git version 2.32.0 (Apple Git-132) | |
| ➜ flutter doctor -v | |
| [✓] Flutter (Channel stable, 2.10.5, on macOS 12.3.1 21E258 darwin-arm, locale en-US) | |
| • Flutter version 2.10.5 at /Users/jimcook/.fvm/versions/2.13.0-0.1.pre | |
| • Upstream repository https://github.com/flutter/flutter.git |
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
| ➜ npm -v && node -v && git --version | |
| 8.6.0 | |
| v16.13.1 | |
| git version 2.32.0 (Apple Git-132) | |
| ➜ flutter doctor -v | |
| [✓] Flutter (Channel stable, 2.10.5, on macOS 12.3.1 21E258 darwin-arm, locale en-US) | |
| • Flutter version 2.10.5 at /Users/jimcook/.fvm/versions/2.13.0-0.1.pre | |
| • Upstream repository https://github.com/flutter/flutter.git |
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 2013 The Flutter Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| import 'dart:math' as math; | |
| import 'package:flutter/material.dart'; | |
| import 'package:go_router/go_router.dart'; | |
| import 'package:english_words/english_words.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
| // Copyright 2013 The Flutter Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| import 'dart:math' as math; | |
| import 'package:flutter/material.dart'; | |
| import 'package:go_router/go_router.dart'; | |
| import 'package:english_words/english_words.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
| void main() { | |
| for (int i = 0; i < 5; i++) { | |
| print('hello ${i + 1}'); | |
| } | |
| } |