This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "name": "Ghotuo", "code": "aaa" }, | |
{ "name": "Alumu-Tesu", "code": "aab" }, | |
{ "name": "Ari", "code": "aac" }, | |
{ "name": "Amal", "code": "aad" }, | |
{ "name": "Arbëreshë", "code": "aae" }, | |
{ "name": "Aranadan", "code": "aaf" }, | |
{ "name": "Ambrak", "code": "aag" }, | |
{ "name": "Abu'", "code": "aah" }, | |
{ "name": "Arifama-Miniafia", "code": "aai" }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/rendering.dart'; | |
import 'package:flutter/widgets.dart'; | |
class SliverColoredBox extends SingleChildRenderObjectWidget { | |
const SliverColoredBox({ | |
Key key, | |
@required this.color, | |
@required Widget sliver, | |
}) : super(key: key, child: sliver); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FeedItem( | |
title: 'Himalayas', | |
timestamp: '23 Mins ago', | |
category: 'SOCIAL', | |
imageUrl: 'https://i.picsum.photos/id/866/400/400.jpg', | |
), |