Skip to content

Instantly share code, notes, and snippets.

W/GooglePlayServicesUtil( 4389): Google Play services out of date. Requires 12451000 but found 11743470
to check if the server works - https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice
stun:
stun.l.google.com:19302,
stun1.l.google.com:19302,
stun2.l.google.com:19302,
stun3.l.google.com:19302,
stun4.l.google.com:19302,
stun.ekiga.net,
stun.ideasip.com,
@minikin
minikin / asset_file.dart
Created July 31, 2020 08:38
Built Value Test
library asset_file;
import 'dart:convert';
import 'package:built_value/built_value.dart';
import 'package:built_value/serializer.dart';
part 'asset_file.g.dart';
abstract class AssetFile implements Built<AssetFile, AssetFileBuilder> {
import 'dart:convert';
void main() {
final event = EposEvent(EposEventType.connect, {'key': 'value'});
final jsonObject = event.toJson();
print(event);
print(jsonObject);
}

Review

I don't know what was a reason to have these documents. I sincerely appreciate the time and effort of the person who did that! But, unfortunately, I don't think that these docs add any real value to a project.

If anyone from a team has a lack of Firebase knowledge. I encourage them to just watch 2 -3 hours of free videos: https://www.youtube.com/playlist?list=PLl-K7zZEsYLluG5MCVEzXAQ7ACZBCuZgZ.

We can schedule a chat to discuss Firebase if need it.

Untitled Diagram.drawio

@minikin
minikin / OverlayableContainerOnLongPress_sample.dart
Created May 28, 2020 15:03 — forked from boeledi/OverlayableContainerOnLongPress_sample.dart
How to display an overlay on top of a particular item, present in a Scroll Area, on longPress?
import 'package:flutter/material.dart';
import 'dart:math';
void main() {
///
/// Launch the application
///
runApp(Application());
}
@minikin
minikin / fin-app.md
Created May 19, 2020 08:26
Scope For Fin App

FinApp

Requirements

  • Develop UX/UI design, illustrations, etc (see below) for mobile app (iOS/Android)
  • UX/UI elements, illustrations, icons must be in vector (or other scabble) format (Sketch/Figma is preferable)

Scope

  • Mobile app UI Style guide (example)
@minikin
minikin / bug.dart
Created May 18, 2020 21:10
AuthService not found
flutter: -- AppModule INITIALIZED
flutter: ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
flutter: The following ModularError was thrown building ModularApp(state: _ModularAppState#2f2e2):
flutter: AuthService not found
flutter:
flutter: The relevant error-causing widget was:
flutter: ModularApp
lib/main.dart:21
flutter:
flutter: When the exception was thrown, this was the stack:
@minikin
minikin / media_player_modal_route.dart
Created May 14, 2020 13:33
MediaPlayerModalRoute
import 'package:flutter/material.dart';
class MediaPlayerModalRoute extends PopupRoute<Widget> {
final WidgetBuilder builder;
final bool dismissible;
final String label;
final Color color;
MediaPlayerModalRoute({
@required this.builder,