Skip to content

Instantly share code, notes, and snippets.

View Fraganya's full-sized avatar
💡
aspiring to inspire.

Francis Ganya Fraganya

💡
aspiring to inspire.
View GitHub Profile
@Fraganya
Fraganya / countries.sql
Created May 5, 2021 23:43 — forked from adhipg/countries.sql
Sql dump of all the Countries, Country Codes, Phone codes.
CREATE TABLE IF NOT EXISTS `country` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iso` char(2) NOT NULL,
`name` varchar(80) NOT NULL,
`nicename` varchar(80) NOT NULL,
`iso3` char(3) DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,
`phonecode` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
@Fraganya
Fraganya / gist:725b3f6e28fa4c7de087261b41ef1284
Created January 3, 2020 07:32 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
import 'package:flutter/material.dart';
class ScaleFactorAppBar extends StatelessWidget {
const ScaleFactorAppBar({
this.textScaleFactor = 1,
this.textDirection = TextDirection.ltr,
this.centerTitle = false,
});
final double textScaleFactor;