Skip to content

Instantly share code, notes, and snippets.

View followthemoney1's full-sized avatar
🏠
Working from home

Dmitry Dyachenko followthemoney1

🏠
Working from home
View GitHub Profile
@followthemoney1
followthemoney1 / card_swipe.dart
Created April 26, 2024 14:25
card swiper created with custom transform
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
@followthemoney1
followthemoney1 / parallax.dart
Created October 12, 2023 16:37
Flutter parallax effect carousel animation with page view, transform
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@followthemoney1
followthemoney1 / iframe.dart
Created May 9, 2023 13:43
dart, iframe using
import 'dart:html' as html;
import 'dart:ui' as ui;
import 'package:flutter/material.dart';
import 'dart:math' as math;
// class IframeView extends StatefulWidget {
// final String html;
// const IframeView({
// Key? key,
@followthemoney1
followthemoney1 / flutter_github_ci.yml
Created December 2, 2022 11:45 — forked from rodydavis/flutter_github_ci.yml
Flutter Github Actions Build and Deploy Web to Firebase Hosting, iOS to Testflight, Android to Google Play (fastlane)
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build_web:
@followthemoney1
followthemoney1 / popup.dart
Created September 5, 2022 13:52
popUpExample
import 'package:auto_size_text/auto_size_text.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:sport_news/ui/widgets/expand_item_transition.dart';
import 'package:sport_news/ui/widgets/my_text_field.dart';
import 'package:sport_news/ui/widgets/pimp_left.dart';
import 'login_controller.dart';
class LoginPage extends GetView<LoginController> {
import 'dart:html' as html;
import 'dart:ui' as ui;
import 'package:flutter/material.dart';
import 'dart:math' as math;
// class IframeView extends StatefulWidget {
// final String html;
// const IframeView({
// Key? key,
import 'package:flutter/material.dart';
import 'dart:developer';
import 'dart:math' as math;
import 'dart:ui' as ui;
import 'dart:html' as html;
import 'package:flutter/material.dart';
// import 'package:sport_news/ui/widgets/video_players/html_view.dart';
// import 'package:webviewx/webviewx.dart';
@followthemoney1
followthemoney1 / .md
Last active December 28, 2021 17:25
Jasper Pipeline

Pipeline

The main Pipeline scheme for creating a release build for both platforms IOS and Android is mostly the same, excluding signing platform specification.

Staging Build

To create build for Staging(Dev):

  1. Create a pull request and wait until the Github Actions have completed the flutter linter work and requested a developer review for your changes.
    • Before we push new changes to the dev branch, we must first run flutter analyze which analyzes code by linter rules. All lint rules in the project:
@followthemoney1
followthemoney1 / main.dart
Created August 26, 2021 22:07
codepen_example
import 'package:flutter/material.dart';
import 'dart:developer';
import 'dart:math' as math;
import 'dart:ui';
import 'package:flutter/material.dart';
import 'dart:html' as html;
import 'dart:ui' as ui;
import 'package:flutter/material.dart';
import 'package:flutter/physics.dart';
main() {
runApp(
MaterialApp(
debugShowCheckedModeBanner: false,
home: PhysicsCardDragDemo(),
),
);