Skip to content

Instantly share code, notes, and snippets.

View zayngdev's full-sized avatar
🎯
Focusing

dev-c zayngdev

🎯
Focusing
View GitHub Profile
@zayngdev
zayngdev / gist:2cca90cdcbcf036f4ae7a5d012388fda
Created July 13, 2019 16:26 — forked from aorjoa/gist:5fe0c46920f164990020
Gdisk for fixed MBR boot Mac OS (rEFIt)
$ sudo gdisk /dev/disk0
Password:
GPT fdisk (gdisk) version 1.0.1
Warning: Devices opened with shared lock will not have their
partition table automatically reloaded!
Partition table scan:
MBR: hybrid
BSD: not present
APM: not present
@zayngdev
zayngdev / main.dart
Created June 13, 2019 15:31
Flutter Call Jar Method Client Code
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Call Jar Method',
import 'dart:math' as math;
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/scheduler.dart';
void main() => runApp(ExampleApp());
class ExampleApp extends StatelessWidget {
@override