Skip to content

Instantly share code, notes, and snippets.

View tirth-aubergine's full-sized avatar
🎯
Focusing

Tirth Patel tirth-aubergine

🎯
Focusing
View GitHub Profile
D/ViewRootImpl@7c054f4[MainActivity](22373): ViewPostIme pointer 0
D/ViewRootImpl@7c054f4[MainActivity](22373): ViewPostIme pointer 1
D/InputMethodManager(22373): prepareNavigationBarInfo() DecorView@f7eb41d[MainActivity]
D/InputMethodManager(22373): getNavigationBarColor() -855310
V/InputMethodManager(22373): Starting input: tba=com.iamplus.mafplus ic=Kt2@3a883d0 mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
D/InputMethodManager(22373): startInputInner - Id : 0
I/InputMethodManager(22373): startInputInner - mService.startInputOrWindowGainedFocus
D/InputTransport(22373): Input channel constructed: fd=196
D/InputTransport(22373): Input channel destroyed: fd=102
D/InputMethodManager(22373): HSIFW - flag : 0 Pid : 22373
@tirth-aubergine
tirth-aubergine / token-expire-bug.txt
Created February 11, 2020 08:27
Token Expire Bug
I/flutter ( 5827): Instance of 'GetEmails'
I/flutter ( 5827): NoSuchMethodError: The method 'toList' was called on null.
I/flutter ( 5827): Receiver: null
I/flutter ( 5827): Tried calling: toList()
I/flutter ( 5827): TokenResponse {
I/flutter ( 5827): tokenType=Bearer,
I/flutter ( 5827): scope=openid User.Read Mail.ReadWrite People.Read Mail.Read Mail.Send Contacts.Read,
I/flutter ( 5827): expiresIn=3600,
I/flutter ( 5827): extExpiresIn=3600,
I/flutter ( 5827): accessToken=EwCAA8l6BAAUO9chh8cJscQLmU+LSWpbnr0vmwwAAflpHDecscKefAuq1gNZq9u1GePDMcVM8PnwUvBP2GlG3g9kkyoEcOKFbpQbwRmaXCFsqhPD4yR6Wp063bwBfQcHkHp5qhsrv/3pwIOOcSkDciL2AmRO2jJcn78OFcSaaaRZDqbLjds/351Q7l8OYzsVfjsTMwvECqgvBDJEjZ+JMMiEQwox4Wv7t8GKD86hpnNt7x3x33YOswBeyjPf2VAgqApsFEOBqtitp4GU00KnW6BU2Ej+oIoCkXPxqOJ2LGQ13m6VBdQd0upYuosHupNJeG9BVUnJPqEg3Gl2FvjfVCr45RwAYI6ucFN90th5mK9awvjT6ONmCca/HZ0wIX4DZgAACPeELVRF3PbGUAKunkaqWe8SaUUu7MVdKo0E92WgztsX/sp4OkdCeZ91rqSdNwThVcse1otfVBhhN55aR6vheEt9iGp1cBJAAL0fXM49hFvHTSzS4NsgNaRYUvbzRUuiC5yJsd8Of2CmMj49RG8X
I/flutter (24148): Instance of 'PerformASROperation'
I/flutter (24148): Dexter Called LongPressStart
I/flutter (24148): Transition { currentState: Instance of 'ASRResult', event: Instance of 'PerformASROperation', nextState: Instance of 'ASRResult' }
I/flutter (24148): In start
I/flutter (24148): _MyAppState.start => result true
I/flutter (24148): _platformCallHandler call speech.onSpeechAvailability false
I/flutter (24148): In onSpeechAvailability
I/flutter (24148): _platformCallHandler call speech.onError 9
I/flutter (24148): In onError
I/flutter (24148): Instance of 'ASRComplete'
I/flutter (24148): Instance of 'PerformASROperation'
I/flutter (24148): Dexter Called LongPressStart
I/flutter (24148): Transition { currentState: Instance of 'HomeIdealState', event: Instance of 'PerformASROperation', nextState: Instance of 'ASRResult' }
I/flutter (24148): In start
I/flutter (24148): _MyAppState.start => result true
I/flutter (24148): _platformCallHandler call speech.onSpeechAvailability false
I/flutter (24148): In onSpeechAvailability
I/flutter (24148): _platformCallHandler call speech.onError 9
I/flutter (24148): In onError
I/flutter (24148): Instance of 'ASRComplete'
void main() => print('Hi Shubham');
@tirth-aubergine
tirth-aubergine / main.dart
Created January 6, 2020 12:30
Hi Vishwesh
void main() {
print('Hi Vishwesh!');
}
@tirth-aubergine
tirth-aubergine / main.dart
Created December 25, 2019 06:31
Slider with demoji package
import 'package:demoji/demoji.dart';
Slider(
// ...
// ...
label: Demoji.blue_heart, // blue-heart emoji from demoji package
),
@tirth-aubergine
tirth-aubergine / main.dart
Last active December 25, 2019 06:28
Slider with Emoji Code-points
Slider(
// ...
// ...
label: '\u{1F499}', // codepoints for blue-heart emoji
),
@tirth-aubergine
tirth-aubergine / main.dart
Created December 25, 2019 06:19
Slider + Emoji - main.dart 2
import 'package:flutter/material.dart';
import 'package:demoji/demoji.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
@tirth-aubergine
tirth-aubergine / main.dart
Created December 25, 2019 06:00
Slider + Emoji - main.dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {