Skip to content

Instantly share code, notes, and snippets.

@lukemadera
Last active November 29, 2021 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukemadera/de1757b4bc1eeaca61d4415f9197c12b to your computer and use it in GitHub Desktop.
Save lukemadera/de1757b4bc1eeaca61d4415f9197c12b to your computer and use it in GitHub Desktop.
Flutter cards
<!DOCTYPE html>
<html>
<head>
<!--
If you are serving your web app in a path other than the root, change the
href value below to reflect the base path you are serving from.
The path provided below has to start and end with a slash "/" in order for
it to work correctly.
For more details:
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
This is a placeholder for base href that will be replaced by the value of
the `--base-href` argument provided to `flutter build`.
-->
<base href="$FLUTTER_BASE_HREF">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="A new Flutter project.">
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="app">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
<title>App</title>
<link rel="manifest" href="manifest.json">
</head>
<body>
<!-- This script installs service_worker.js to provide PWA functionality to
application. For more information, see:
https://developers.google.com/web/fundamentals/primers/service-workers -->
<!-- needed to show web images on web: https://docs.flutter.dev/development/platform-integration/web-images -->
<script type="text/javascript">
let useHtml = true;
if(useHtml) {
window.flutterWebRenderer = "html";
} else {
window.flutterWebRenderer = "canvaskit";
}
</script>
<script>
var serviceWorkerVersion = null;
var scriptLoaded = false;
function loadMainDartJs() {
if (scriptLoaded) {
return;
}
scriptLoaded = true;
var scriptTag = document.createElement('script');
scriptTag.src = 'main.dart.js';
scriptTag.type = 'application/javascript';
document.body.append(scriptTag);
}
if ('serviceWorker' in navigator) {
// Service workers are supported. Use them.
window.addEventListener('load', function () {
// Wait for registration to finish before dropping the <script> tag.
// Otherwise, the browser will load the script multiple times,
// potentially different versions.
var serviceWorkerUrl = 'flutter_service_worker.js?v=' + serviceWorkerVersion;
navigator.serviceWorker.register(serviceWorkerUrl)
.then((reg) => {
function waitForActivation(serviceWorker) {
serviceWorker.addEventListener('statechange', () => {
if (serviceWorker.state == 'activated') {
console.log('Installed new service worker.');
loadMainDartJs();
}
});
}
if (!reg.active && (reg.installing || reg.waiting)) {
// No active web worker and we have installed or are installing
// one for the first time. Simply wait for it to activate.
waitForActivation(reg.installing || reg.waiting);
} else if (!reg.active.scriptURL.endsWith(serviceWorkerVersion)) {
// When the app updates the serviceWorkerVersion changes, so we
// need to ask the service worker to update.
console.log('New service worker available.');
reg.update();
waitForActivation(reg.installing);
} else {
// Existing service worker is still good.
console.log('Loading app from service worker.');
loadMainDartJs();
}
});
// If service worker doesn't succeed in a reasonable amount of time,
// fallback to plaint <script> tag.
setTimeout(() => {
if (!scriptLoaded) {
console.warn(
'Failed to load app from service worker. Falling back to plain <script> tag.',
);
loadMainDartJs();
}
}, 4000);
});
} else {
// Service workers not supported. Just drop the <script> tag.
loadMainDartJs();
}
</script>
</body>
</html>
// Instructions: Code it then share the (dartpad) URL and how many hours you spent on it.
// Goal: Build a page / tool to allow users to create, update, delete and view (search, filter) nature images.
// DESIGNERS: make it beautiful and intuitive. NON-designers: don't worry about styling; make it functional.
// Build as low level (from scratch) as possible - no pre-built styling or widgets outside of built in Flutter widgets such as `Column` or `Row`.
// Create a new github gist `main.dart` for your code to view on dartPad: https://github.com/dart-lang/dart-pad/wiki/Sharing-Guide
// Suggested time: 2 hours.
// There is a lot of functionality that could be done so please make sure to add a TODO list with notes of what is left, especially if you choose to dive deep into perfecting one piece and thus do not complete all the parts (though ideally we'd prefer you complete all parts).
// 1. List view - display the images. Cards? Table? Carousel? Other?
// 1a. Paging / scrolling.
// 1b. Filters - search by image title or by one or more tags.
// 1c. Sorting - sort by image title or by tag.
//
// 2. Details view & CRUD - a single image.
// 2a. How? New page & destroy list? Hide list? Show both? Think about performance and user experience.
// 2b. Edit image (update name and / or tag).
// 2c. Delete item / image.
// 2d. Add a new item - same page / structure as view and edit, or new page?
//
// 3. What's left to do / what did you not get to? What else would you add and how would you prioritize it? Feel free to leave comments / placeholders in the code and / or add a README file explaining your work.
// 3a. Testing?
// 3b. Performance?
// 3c. Code quality?
// Data is hardcoded in the getItems function; structure / example is:
//[{
// "title": "Alone in the unspoilt wilderness",
// "description": "landscape photography of mountain hit by sun rays",
// "imageUrl": "https://images.unsplash.com/photo-1469474968028-56623f02e42e",
// "tags": ["nature", "mountain", "landscape"]
//}, ...
//]
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Align(
alignment: Alignment.topCenter,
child: Column(
children: [
Text('Build a list of nature images. See comments at top for instructions.'),
//Image.network('https://static.parade.com/wp-content/uploads/2020/07/iStock-fairies.jpg'),
//HtmlElementView(
// viewType: 'https://static.parade.com/wp-content/uploads/2020/07/iStock-fairies.jpg',
//),
]
)
)
)
);
}
}
List<dynamic> getItems() {
//List<dynamic> items = [{"title": "Alone in the unspoilt wilderness", "description": "landscape photography of mountain hit by sun rays", "imageUrl": "https://images.unsplash.com/photo-1469474968028-56623f02e42e", "tags": ["nature", "mountain", "landscape"]}, {"title": "Whangarei Falls footbridge", "description": "blue and brown steel bridge", "imageUrl": "https://images.unsplash.com/photo-1447752875215-b2761acb3c5d", "tags": ["nature", "forest", "tree"]}, {"title": "Bridge over a green waterfall", "description": "gray concrete bridge and waterfalls during daytime", "imageUrl": "https://images.unsplash.com/photo-1433086966358-54859d0ed716", "tags": ["water", "nature", "waterfall"]}, {"title": "Taking The Scenic Route", "description": "foggy mountain summit", "imageUrl": "https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05", "tags": ["nature", "mountain", "landscape"]}, {"title": "El Capitan on a sunny afternoon", "description": "landmark photography of trees near rocky mountain under blue skies daytime", "imageUrl": "https://images.unsplash.com/photo-1426604966848-d7adac402bff", "tags": ["nature", "landscape", "wallpaper"]}, {"title": "Beautiful woodland path", "description": "forest trees", "imageUrl": "https://images.unsplash.com/photo-1441974231531-c6227db76b6e", "tags": ["nature", "forest", "tree"]}, {"title": "The Island", "description": "silhouette of trees near body of water during sunset", "imageUrl": "https://images.unsplash.com/photo-1586348943529-beaae6c28db9", "tags": ["nature", "sunset", "beaver dam"]}, {"title": "Creative Lively ", "description": "green trees on forest during daytime", "imageUrl": "https://images.unsplash.com/photo-1588392382834-a891154bca4d", "tags": ["nature", "somewhere in the middle of nowhere", "jungle"]}, {"title": "Lake Louise landscape", "description": "photo of two mountains", "imageUrl": "https://images.unsplash.com/photo-1439853949127-fa647821eba0", "tags": ["nature", "mountain", "landscape"]}, {"title": "Misty shroud over a forest", "description": "palm trees covered with fog", "imageUrl": "https://images.unsplash.com/photo-1418065460487-3e41a6c84dc5", "tags": ["nature", "forest", "tree"]}, {"title": "Body Grassland in Yili\uff0cXinjiang\uff0cChina", "description": "bird's eye view photograph of green mountains", "imageUrl": "https://images.unsplash.com/photo-1501854140801-50d01698950b", "tags": ["nature", "wallpaper", "green"]}, {"title": "Waterfall in Telluride", "description": "time lapse photo of falls on forest trees", "imageUrl": "https://images.unsplash.com/photo-1455218873509-8097305ee378", "tags": ["nature", "landscape", "wallpaper"]}, {"title": "This is the first photo I am uploading to unsplash.com - I\u2019ve been taking photos actively for the last 15 years, and despite having a vast collection of thousands of images from all parts of the world, I have never really sold any. I love the idea of sharing free images for those who cannot afford to pay for them. I also believe that those who can afford to pay for a photo, and appreciate the efforts of a photographer will be happy to compensate the photographer when they use one for commercial purposes. Here is a free image of a tree - if you use it, please follow my Instagram @niko.photos :)", "description": "green leaf tree under blue sky", "imageUrl": "https://images.unsplash.com/photo-1502082553048-f009c37129b9", "tags": ["nature", "tree", "wallpaper"]}, {"title": "Blue lake and green shore", "description": "bird's eye view photography of trees and body of water", "imageUrl": "https://images.unsplash.com/photo-1497436072909-60f360e1d4b1", "tags": ["nature", "wallpaper", "aerial"]}, {"title": "Sunset at Clingmans Dome", "description": "silhoutte of mountains during sunset", "imageUrl": "https://images.unsplash.com/photo-1500534623283-312aade485b7", "tags": ["nature", "landscape", "sun"]}, {"title": "Sass long, Langkofel, Sasso lungo, Val Gherdeina!", "description": "moon near mountain ridge", "imageUrl": "https://images.unsplash.com/photo-1546514355-7fdc90ccbd03", "tags": ["nature", "landscape", "wallpaper"]}, {"title": "Sandstone cliff with a waterfall", "description": "landscape photography of brown mountain", "imageUrl": "https://images.unsplash.com/photo-1431794062232-2a99a5431c6c", "tags": ["nature", "waterfall", "wallpaper"]}, {"title": "Perched blue and orange bird", "description": "selective focus photography of blue kingfisher", "imageUrl": "https://images.unsplash.com/photo-1444464666168-49d633b86797", "tags": ["nature", "bird", "animal"]}, {"title": "White sugar", "description": "landscape photography of black mountain", "imageUrl": "https://images.unsplash.com/photo-1505765050516-f72dcac9c60e", "tags": ["nature", "mountain", "landscape"]}, {"title": "Boathouse on a mountain lake", "description": "boat docked near house", "imageUrl": "https://images.unsplash.com/photo-1470770903676-69b98201ea1c", "tags": ["nature", "mountain", "landscape"]}, {"title": "Remote forest path", "description": "low angle photo of pine trees", "imageUrl": "https://images.unsplash.com/photo-1473773508845-188df298d2d1", "tags": ["nature", "forest", "tree"]}, {"title": "Poor mans garden", "description": "bokeh photography of person carrying soil", "imageUrl": "https://images.unsplash.com/photo-1492496913980-501348b61469", "tags": ["hands", "garden", "nature"]}, {"title": "Emerald Bay State Park in the Fall", "description": "green-leafed trees", "imageUrl": "https://images.unsplash.com/photo-1552083375-1447ce886485", "tags": ["lake tahoe", "united states", "wallpaper"]}, {"title": "Get lost and discover yourself", "description": "aerial view of beach", "imageUrl": "https://images.unsplash.com/photo-1547036967-23d11aacaee0", "tags": ["nature", "australia", "beach"]}, {"title": "A Morning in Bali", "description": "eagle-eye view photography of brown pathway", "imageUrl": "https://images.unsplash.com/photo-1510797215324-95aa89f43c33", "tags": ["nature", "bali", "indonesia"]}, {"title": "Yellow petals flower", "description": "closeup photo of yellow sunflowers", "imageUrl": "https://images.unsplash.com/photo-1504567961542-e24d9439a724", "tags": ["nature", "flower", "sunflower"]}, {"title": "The beauty of nature", "description": "green leaf photography", "imageUrl": "https://images.unsplash.com/photo-1504198266287-1659872e6590", "tags": ["nature", "plant", "leaf"]}, {"title": "Finding my roots", "description": "sun light passing through green leafed tree", "imageUrl": "https://images.unsplash.com/photo-1518495973542-4542c06a5843", "tags": ["nature", "tree", "forest"]}, {"title": "Looking up", "description": "low angle photography of trees at daytime", "imageUrl": "https://images.unsplash.com/photo-1513836279014-a89f7a76ae86", "tags": ["nature", "tree", "forest"]}, {"title": "Impressive bamboo canopy", "description": "low-angle photography of green leaf trees at daytime", "imageUrl": "https://images.unsplash.com/photo-1420745981456-b95fe23f5753", "tags": ["nature", "tree", "forest"]}, {"title": "native plants @ South Ural travel", "description": "green leaves", "imageUrl": "https://images.unsplash.com/photo-1500829243541-74b677fecc30", "tags": ["nature", "plant", "green"]}, {"title": "San Diego beach sunrise", "description": "shoreline during golden hour", "imageUrl": "https://images.unsplash.com/photo-1474524955719-b9f87c50ce47", "tags": ["nature", "sunset", "sky"]}, {"title": "Full moon behind the rock and the stars in front of you!", "description": "brown mountain at nighttime", "imageUrl": "https://images.unsplash.com/photo-1536431311719-398b6704d4cc", "tags": ["nature", "mountain", "grey"]}, {"title": "Cattles at Paye Meadows, KPK, Pakistan.", "description": "herd of sheep on green grassy hill during cloudy day", "imageUrl": "https://images.unsplash.com/photo-1572099606223-6e29045d7de3", "tags": ["nature", "paye meadows", "kpk"]}, {"title": "Antelope Canyon", "description": "brown cliff", "imageUrl": "https://images.unsplash.com/photo-1492724724894-7464c27d0ceb", "tags": ["nature", "texture", "canyon"]}, {"title": "nature", "description": "selective focus photo of green vine", "imageUrl": "https://images.unsplash.com/photo-1518173946687-a4c8892bbd9f", "tags": ["nature", "green", "washington"]}, {"title": "Dew on rolled-up leaves", "description": "closeup photo of green leafed plants", "imageUrl": "https://images.unsplash.com/photo-1463107971871-fbac9ddb920f", "tags": ["nature", "plant", "green"]}, {"title": "follow @kalenemsley on ig", "description": "body of water surrounding with trees", "imageUrl": "https://images.unsplash.com/photo-1465189684280-6a8fa9b19a7a", "tags": ["nature", "landscape", "lake"]}, {"title": "Sunrays over woods", "description": "aerial photography of sunlight pass through tall trees", "imageUrl": "https://images.unsplash.com/photo-1444877466744-dc2f2af2b931", "tags": ["nature", "unnamed road", "kenora"]}, {"title": "\"If people sat outside and looked up at the stars each night, I\u2019ll bet they\u2019d live a lot differently.\"", "description": "landscape photo of brown mountain", "imageUrl": "https://images.unsplash.com/photo-1489619243109-4e0ea59cfe10", "tags": ["nature", "sky", "sedona"]}, {"title": "Red\u2019n foggy", "description": "aerial view of brown fores and black mountains", "imageUrl": "https://images.unsplash.com/photo-1508669232496-137b159c1cdb", "tags": ["nature", "mountain", "autumn"]}, {"title": "Dahlias", "description": "macro shot photography of red rose", "imageUrl": "https://images.unsplash.com/photo-1513682322455-ea8b2d81d418", "tags": ["nature", "flower", "brown"]}, {"title": "Steaming mud pots in the Selt\u00fan area of Iceland. Completely silent apart from the sounds of bubbling water and the wind.", "description": "lake near mountain under cloudy sky at daytime", "imageUrl": "https://images.unsplash.com/photo-1485201543483-f06c8d2a8fb4", "tags": ["nature", "landscape", "lake"]}, {"title": "The last night of a two week stay on the North Shore of Oahu, Hawaii.", "description": "seashore during golden hour", "imageUrl": "https://images.unsplash.com/photo-1507525428034-b723cf961d3e", "tags": ["beach", "ocean", "sea"]}, {"title": "Pier reaching out to the lake", "description": "brown wooden dockside beside sea", "imageUrl": "https://images.unsplash.com/photo-1422564030440-1ecae6e21f67", "tags": ["nature", "pier", "dock"]}, {"title": "Wet mountain valley", "description": "green mountain across body of water", "imageUrl": "https://images.unsplash.com/photo-1464822759023-fed622ff2c3b", "tags": ["nature", "mountain", "landscape"]}, {"title": "Minimal eucalyptus leaves", "description": "green leaf", "imageUrl": "https://images.unsplash.com/photo-1533038590840-1cde6e668a91", "tags": ["plant", "leaf", "minimal"]}, {"title": "Lanikai halo", "description": "aerial island and beaches", "imageUrl": "https://images.unsplash.com/photo-1546948630-1149ea60dc86", "tags": ["nature", "lanikai", "kailua"]}, {"title": "You can help and support me via my description (Paypal) !\n\nInstagram : @clvmentm\nFacebook Page : www.facebook.com/CMReflections/\n\nIf you wish to buy it in full quality, email me on clementmreflections@gmail.com.", "description": "photo of pine trees", "imageUrl": "https://images.unsplash.com/photo-1509316975850-ff9c5deb0cd9", "tags": ["landscape", "nature", "forest"]}, {"title": "Sunset over a lavender field", "description": "lavender field", "imageUrl": "https://images.unsplash.com/photo-1499002238440-d264edd596ec", "tags": ["france", "flower", "lavender"]}, {"title": "If you find my photos useful, please consider subscribing to me on YouTube for the occasional photography tutorial and much more - https://bit.ly/3smVlKp ", "description": "brown mountain on cloudy day", "imageUrl": "https://images.unsplash.com/photo-1552082919-e60010758c47", "tags": ["nature", "mountain", "wallpaper"]}, {"title": "Not really lost though ;). I took this picture during a hike in Yoho National Park in the late morning.", "description": "time-lapse photography of river", "imageUrl": "https://images.unsplash.com/photo-1527489377706-5bf97e608852", "tags": ["landscape", "nature", "canada"]}, {"title": "Mystery Forest Light", "description": "forest heat by sunbeam", "imageUrl": "https://images.unsplash.com/photo-1523712999610-f77fbcfc3843", "tags": ["landscape", "nature", "tree"]}, {"title": "Pair of boats on water in Lago di Braies", "description": "four brown wooden boat near dock", "imageUrl": "https://images.unsplash.com/photo-1487622750296-6360190669a1", "tags": ["nature", "travel", "italy"]}, {"title": "Seclusion in Lago di Braies", "description": "architectural photography of brown wooden house", "imageUrl": "https://images.unsplash.com/photo-1482192505345-5655af888cc4", "tags": ["landscape", "nature", "cabin"]}, {"title": "I was freezing cold staying in the tent cabins in Half Dome (formerly Curry) Village in Yosemite Valley with my dad who was there for work, so I got up and drove around the valley at 6 am. There\u2019s been lots of fires in the area and the valley was filled with this thick smoke. Stopped at a turnout near Tunnel View and shot this photo - I really love the symmetry of it and the smooth gradients the smoke produces.", "description": "body of water surrounded by trees", "imageUrl": "https://images.unsplash.com/photo-1506744038136-46273834b3fb", "tags": ["landscape", "nature", "wallpaper"]}, {"title": "Seceda mountains in Italy. ", "description": "green grass and gray rocky mountain during daytime", "imageUrl": "https://images.unsplash.com/photo-1615729947596-a598e5de0ab3", "tags": ["landscape", "nature", "mountain"]}, {"title": "Check out more of my travels at http://www.instagram.com/simonmigaj", "description": "man sitting on gray dock", "imageUrl": "https://images.unsplash.com/photo-1508672019048-805c876b67e2", "tags": ["nature", "travel", "meditation"]}, {"title": "Two deer in front of Half Dome in Yosemite Valley during sunset.\n\nI spent the evening in Yosemite Valley watching the sun go down on Half Dome when a couple of deer walked toward me. I took the opportunity to take this picture of them before moving out of their way so they could walk away undisturbed. It was a very beautiful experience and one of the best sunsets I've ever witnessed.", "description": "two brown deer beside trees and mountain", "imageUrl": "https://images.unsplash.com/photo-1472396961693-142e6e269027", "tags": ["nature", "mountain", "animal"]}, {"title": "Picture taken from the deck of a sketchy booze-cruise in Cabo San Lucas, Mexico...while I was a bit drunk.", "description": "rock formation on the ocean photography", "imageUrl": "https://images.unsplash.com/photo-1562095241-8c6714fd4178", "tags": ["nature", "mexico", "ocean"]}, {"title": "Support more photos like this, visit http://www.luckybeanz.com/2016/10/09/2241/ - I had been travelling around Central America, living in a van and sharing experiences with other travelers. Having just dropped my last travel buddy off I headed back to Lake Atitlan and found an incredible spot to camp right next to the lake. There was this jetty sticking out into the lake where I sat watching the sunset, once again living the dream on my own. More tales from the road http://www.luckybeanz.com/", "description": "brown wooden dock between lavender flower field near body of water during golden hour", "imageUrl": "https://images.unsplash.com/photo-1532274402911-5a369e4c4bb5", "tags": ["landscape", "nature", "guatemala"]}, {"title": "https://www.instagram.com/boontohhgraphy/", "description": "skogafoss falls", "imageUrl": "https://images.unsplash.com/photo-1488711500009-f9111944b1ab", "tags": ["nature", "rainbow", "waterfall"]}, {"title": "beach meets see", "description": "seashore at daytime", "imageUrl": "https://images.unsplash.com/photo-1531386450450-969f935bd522", "tags": ["nature", "beach", "water"]}, {"title": "Nepal.\nInstagram @RaviNepz", "description": "green mountains under blue sky during daytime", "imageUrl": "https://images.unsplash.com/photo-1580436541340-36b8d0c60bae", "tags": ["mountain", "blue", "nepal"]}, {"title": "Tree-lined alley", "description": "gray concrete road top between green trees", "imageUrl": "https://images.unsplash.com/photo-1420593248178-d88870618ca0", "tags": ["nature", "tree", "green"]}, {"title": "It almost seemed unreal, how beautiful the mountains looked during sunset. Almost like a painting. The entire time the sun was setting, we all just were silent and in awe of how beautiful our earth is.", "description": "mountains under white mist at daytime", "imageUrl": "https://images.unsplash.com/photo-1500534314209-a25ddb2bd429", "tags": ["landscape", "nature", "mountain"]}, {"title": "\u00c9cosse valley and mountains", "description": "mountain covered with green grass", "imageUrl": "https://images.unsplash.com/photo-1438786657495-640937046d18", "tags": ["landscape", "nature", "mountain"]}, {"title": "Little wave", "description": "ocean wave at beach", "imageUrl": "https://images.unsplash.com/photo-1500375592092-40eb2168fd21", "tags": ["beach", "water", "sea"]}, {"title": "Sunset on Limides Lake", "description": "brown mountain near body of water during daytime", "imageUrl": "https://images.unsplash.com/photo-1600240644455-3edc55c375fe", "tags": ["landscape", "nature", "mountain"]}];
List<dynamic> items = [{"title": "Alone in the unspoilt wilderness", "description": "landscape photography of mountain hit by sun rays", "tags": ["nature", "mountain", "landscape"]}, {"title": "Whangarei Falls footbridge", "description": "blue and brown steel bridge", "tags": ["nature", "forest", "tree"]}, {"title": "Bridge over a green waterfall", "description": "gray concrete bridge and waterfalls during daytime", "tags": ["water", "nature", "waterfall"]}, {"title": "Taking The Scenic Route", "description": "foggy mountain summit", "tags": ["nature", "mountain", "landscape"]}, {"title": "El Capitan on a sunny afternoon", "description": "landmark photography of trees near rocky mountain under blue skies daytime", "tags": ["nature", "landscape", "wallpaper"]}, {"title": "Beautiful woodland path", "description": "forest trees", "tags": ["nature", "forest", "tree"]}, {"title": "The Island", "description": "silhouette of trees near body of water during sunset", "tags": ["nature", "sunset", "beaver dam"]}, {"title": "Creative Lively ", "description": "green trees on forest during daytime", "tags": ["nature", "somewhere in the middle of nowhere", "jungle"]}, {"title": "Lake Louise landscape", "description": "photo of two mountains", "tags": ["nature", "mountain", "landscape"]}, {"title": "Misty shroud over a forest", "description": "palm trees covered with fog", "tags": []}, {"title": "Body Grassland in Yili\uff0cXinjiang\uff0cChina", "description": "bird's eye view photograph of green mountains", "tags": ["nature", "wallpaper", "green"]}, {"title": "Waterfall in Telluride", "description": "time lapse photo of falls on forest trees", "tags": ["nature", "landscape", "wallpaper"]}, {"title": "This is the first photo I am uploading to unsplash.com - I\u2019ve been taking photos actively for the last 15 years, and despite having a vast collection of thousands of images from all parts of the world, I have never really sold any. I love the idea of sharing free images for those who cannot afford to pay for them. I also believe that those who can afford to pay for a photo, and appreciate the efforts of a photographer will be happy to compensate the photographer when they use one for commercial purposes. Here is a free image of a tree - if you use it, please follow my Instagram @niko.photos :)", "description": "green leaf tree under blue sky", "tags": ["nature", "tree", "wallpaper"]}, {"title": "Blue lake and green shore", "description": "bird's eye view photography of trees and body of water", "tags": ["nature", "wallpaper", "aerial"]}, {"title": "Sunset at Clingmans Dome", "description": "silhoutte of mountains during sunset", "tags": ["nature", "landscape", "sun"]}, {"title": "Sass long, Langkofel, Sasso lungo, Val Gherdeina!", "description": "moon near mountain ridge", "tags": ["nature", "landscape", "wallpaper"]}, {"title": "Sandstone cliff with a waterfall", "description": "landscape photography of brown mountain", "tags": ["nature", "waterfall", "wallpaper"]}, {"title": "Perched blue and orange bird", "description": "selective focus photography of blue kingfisher", "tags": ["nature", "bird", "animal"]}, {"title": "White sugar", "description": "landscape photography of black mountain", "tags": ["nature", "mountain", "landscape"]}, {"title": "Boathouse on a mountain lake", "description": "boat docked near house", "tags": ["nature", "mountain", "landscape"]}, {"title": "Remote forest path", "description": "low angle photo of pine trees", "tags": ["nature", "forest", "tree"]}, {"title": "Poor mans garden", "description": "bokeh photography of person carrying soil", "tags": ["hands", "garden", "nature"]}, {"title": "Emerald Bay State Park in the Fall", "description": "green-leafed trees", "tags": ["lake tahoe", "united states", "wallpaper"]}, {"title": "Get lost and discover yourself", "description": "aerial view of beach", "tags": ["nature", "australia", "beach"]}, {"title": "A Morning in Bali", "description": "eagle-eye view photography of brown pathway", "tags": ["nature", "bali", "indonesia"]}, {"title": "Yellow petals flower", "description": "closeup photo of yellow sunflowers", "tags": ["nature", "flower", "sunflower"]}, {"title": "The beauty of nature", "description": "green leaf photography", "tags": ["nature", "plant", "leaf"]}, {"title": "Finding my roots", "description": "sun light passing through green leafed tree", "tags": ["nature", "tree", "forest"]}, {"title": "Looking up", "description": "low angle photography of trees at daytime", "tags": ["nature", "tree", "forest"]}, {"title": "Impressive bamboo canopy", "description": "low-angle photography of green leaf trees at daytime", "tags": ["nature", "tree", "forest"]}, {"title": "native plants @ South Ural travel", "description": "green leaves", "tags": ["nature", "green", "plant"]}, {"title": "San Diego beach sunrise", "description": "shoreline during golden hour", "tags": ["nature", "sunset", "sky"]}, {"title": "Full moon behind the rock and the stars in front of you!", "description": "brown mountain at nighttime", "tags": ["nature", "mountain", "grey"]}, {"title": "Cattles at Paye Meadows, KPK, Pakistan.", "description": "herd of sheep on green grassy hill during cloudy day", "tags": ["nature", "paye meadows", "kpk"]}, {"title": "Antelope Canyon", "description": "brown cliff", "tags": ["nature", "texture", "canyon"]}, {"title": "nature", "description": "selective focus photo of green vine", "tags": ["nature", "green", "washington"]}, {"title": "Dew on rolled-up leaves", "description": "closeup photo of green leafed plants", "tags": ["nature", "green", "plant"]}, {"title": "follow @kalenemsley on ig", "description": "body of water surrounding with trees", "tags": ["nature", "landscape", "lake"]}, {"title": "Sunrays over woods", "description": "aerial photography of sunlight pass through tall trees", "tags": ["nature", "unnamed road", "kenora"]}, {"title": "\"If people sat outside and looked up at the stars each night, I\u2019ll bet they\u2019d live a lot differently.\"", "description": "landscape photo of brown mountain", "tags": ["nature", "sky", "sedona"]}, {"title": "Red\u2019n foggy", "description": "aerial view of brown fores and black mountains", "tags": ["nature", "mountain", "autumn"]}, {"title": "Dahlias", "description": "macro shot photography of red rose", "tags": ["nature", "flower", "brown"]}, {"title": "Steaming mud pots in the Selt\u00fan area of Iceland. Completely silent apart from the sounds of bubbling water and the wind.", "description": "lake near mountain under cloudy sky at daytime", "tags": ["nature", "landscape", "lake"]}, {"title": "The last night of a two week stay on the North Shore of Oahu, Hawaii.", "description": "seashore during golden hour", "tags": ["beach", "sea", "ocean"]}, {"title": "Pier reaching out to the lake", "description": "brown wooden dockside beside sea", "tags": ["nature", "pier", "dock"]}, {"title": "Wet mountain valley", "description": "green mountain across body of water", "tags": ["nature", "mountain", "landscape"]}, {"title": "Minimal eucalyptus leaves", "description": "green leaf", "tags": ["plant", "leaf", "minimal"]}, {"title": "Lanikai halo", "description": "aerial island and beaches", "tags": ["nature", "lanikai", "kailua"]}, {"title": "You can help and support me via my description (Paypal) !\n\nInstagram : @clvmentm\nFacebook Page : www.facebook.com/CMReflections/\n\nIf you wish to buy it in full quality, email me on clementmreflections@gmail.com.", "description": "photo of pine trees", "tags": ["landscape", "nature", "forest"]}, {"title": "Sunset over a lavender field", "description": "lavender field", "tags": ["france", "flower", "lavender"]}, {"title": "If you find my photos useful, please consider subscribing to me on YouTube for the occasional photography tutorial and much more - https://bit.ly/3smVlKp ", "description": "brown mountain on cloudy day", "tags": ["nature", "mountain", "wallpaper"]}, {"title": "Not really lost though ;). I took this picture during a hike in Yoho National Park in the late morning.", "description": "time-lapse photography of river", "tags": ["landscape", "nature", "canada"]}, {"title": "Mystery Forest Light", "description": "forest heat by sunbeam", "tags": ["landscape", "nature", "tree"]}, {"title": "Pair of boats on water in Lago di Braies", "description": "four brown wooden boat near dock", "tags": ["nature", "travel", "italy"]}, {"title": "Seclusion in Lago di Braies", "description": "architectural photography of brown wooden house", "tags": ["landscape", "nature", "cabin"]}, {"title": "I was freezing cold staying in the tent cabins in Half Dome (formerly Curry) Village in Yosemite Valley with my dad who was there for work, so I got up and drove around the valley at 6 am. There\u2019s been lots of fires in the area and the valley was filled with this thick smoke. Stopped at a turnout near Tunnel View and shot this photo - I really love the symmetry of it and the smooth gradients the smoke produces.", "description": "body of water surrounded by trees", "tags": ["landscape", "nature", "wallpaper"]}, {"title": "Seceda mountains in Italy. ", "description": "green grass and gray rocky mountain during daytime", "tags": ["landscape", "nature", "mountain"]}, {"title": "Check out more of my travels at http://www.instagram.com/simonmigaj", "description": "man sitting on gray dock", "tags": ["nature", "travel", "meditation"]}, {"title": "Two deer in front of Half Dome in Yosemite Valley during sunset.\n\nI spent the evening in Yosemite Valley watching the sun go down on Half Dome when a couple of deer walked toward me. I took the opportunity to take this picture of them before moving out of their way so they could walk away undisturbed. It was a very beautiful experience and one of the best sunsets I've ever witnessed.", "description": "two brown deer beside trees and mountain", "tags": ["nature", "mountain", "animal"]}, {"title": "Picture taken from the deck of a sketchy booze-cruise in Cabo San Lucas, Mexico...while I was a bit drunk.", "description": "rock formation on the ocean photography", "tags": ["nature", "mexico", "ocean"]}, {"title": "Support more photos like this, visit http://www.luckybeanz.com/2016/10/09/2241/ - I had been travelling around Central America, living in a van and sharing experiences with other travelers. Having just dropped my last travel buddy off I headed back to Lake Atitlan and found an incredible spot to camp right next to the lake. There was this jetty sticking out into the lake where I sat watching the sunset, once again living the dream on my own. More tales from the road http://www.luckybeanz.com/", "description": "brown wooden dock between lavender flower field near body of water during golden hour", "tags": ["landscape", "nature", "guatemala"]}, {"title": "https://www.instagram.com/boontohhgraphy/", "description": "skogafoss falls", "tags": ["nature", "rainbow", "waterfall"]}, {"title": "beach meets see", "description": "seashore at daytime", "tags": ["nature", "beach", "water"]}, {"title": "Nepal.\nInstagram @RaviNepz", "description": "green mountains under blue sky during daytime", "tags": ["nature", "blue", "nepal"]}, {"title": "Tree-lined alley", "description": "gray concrete road top between green trees", "tags": ["nature", "tree", "green"]}, {"title": "It almost seemed unreal, how beautiful the mountains looked during sunset. Almost like a painting. The entire time the sun was setting, we all just were silent and in awe of how beautiful our earth is.", "description": "mountains under white mist at daytime", "tags": ["landscape", "nature", "mountain"]}, {"title": "\u00c9cosse valley and mountains", "description": "mountain covered with green grass", "tags": ["landscape", "nature", "mountain"]}, {"title": "Little wave", "description": "ocean wave at beach", "tags": ["beach", "water", "sea"]}, {"title": "Sunset on Limides Lake", "description": "brown mountain near body of water during daytime", "tags": ["landscape", "nature", "mountain"]}, {"title": "This photo was taken in the high mountains of Adjara, Georgia, while I was doing my project there. It was summer, but the temperature didn\u2019t feel like it. I spent most of my days standing in front of this amazing view, thinking about the life that was waiting for me back in capital. Suddenly, I had a very strong desire to talk with the fog. Loudly. Thought it had many stories to tell too.", "description": "aerial photo of green trees", "tags": ["nature", "tree", "forest"]}, {"title": "Tree in green wheat field", "description": "green tree on grassland during daytime", "tags": ["nature", "tree", "landscape"]}, {"title": "Green minimalism", "description": "green leafed plant", "tags": ["green", "plant", "background"]}, {"title": "Sunset at Hug Point, Oregon.", "description": "reflection of sunset on beachshore", "tags": ["nature", "beach", "sunset"]}, {"title": "Blockhouse Series", "description": "photo of brown wood slab", "tags": ["brown", "texture", "wood"]}, {"title": "Tourists on a waterfall bridge", "description": "gray bridge in the middle of falls", "tags": ["nature", "waterfall", "water"]}, {"title": "going up at dawn", "description": "assorted-color hot air balloons during daytime", "tags": ["sky", "balloon", "wallpaper"]}, {"title": "Color of the lake is so beautiful!", "description": "scenery of mountain", "tags": ["mountain", "canada", "moraine lake"]}, {"title": "Waking up at 5.30 we entered the water just as the sun was rising. Even in a busy place there is always a time when most people are sleeping and you can find a tranquil moment for yourself.", "description": "calm body of water during golden hour", "tags": ["pink", "water", "sea"]}, {"title": "Underwater Maldives", "description": "white and green coral reel", "tags": ["nature", "sea", "ocean"]}, {"title": "The most photographed tree in New Zealand. Why? Just look at it!", "description": "brown leaf tree at water during daytime", "tags": ["nature", "wanaka", "new zealand"]}, {"title": "Breathtaking valley", "description": "river and mountain ranges under white clouds", "tags": ["nature", "mountain", "going-to-the-sun road"]}, {"title": "If you find my photos useful, please consider subscribing to me on YouTube for the occasional photography tutorial and much more - https://bit.ly/3smVlKp ", "description": "calm body of water", "tags": ["nature", "canada", "lake louise"]}, {"title": "If you like my work then you can support it.\nPrint: http://bit.ly/32ds7QL\nBehance: http://behance.net/szaboviktor\nBlog: https://blog.szaboviktor.com \nSupport: https://www.paypal.me/szaboviktor \nMy presets: https://bit.ly/2TyvzRK ", "description": "white sea of clouds", "tags": ["sky", "cloud", "wallpaper"]}, {"title": "Sequoia National Park", "description": "trees on hill under yellow sky at daytime", "tags": ["nature", "mountain", "sequoia national park"]}, {"title": "Being all alone, during several hours on an icy cold beach on Lofoten islands, watching the northern lights unfold in the sky - there\u2019s not much that can compete with that :)\n\nBuy awesome, limited edtition, photo prints: handpictphoto.com", "description": "landscape photo of mountains near lake wallpaper", "tags": ["norway", "aurora", "sky"]}, {"title": "Order prints: https://timothymeinberg.darkroom.tech/products/878716", "description": "bonfire on forest", "tags": ["fire", "camping", "nature"]}, {"title": "Mystical garden", "description": "brown wooden footbridge surrounded by pink petaled flowers with creek underneath during daytime", "tags": ["nature", "landscape", "fantasy"]}, {"title": "Pinkalicious \u2026 :-)", "description": "silhouette of mountain", "tags": ["nature", "wallpaper", "texture"]}, {"title": "Smoky morning in Cascades", "description": "pine trees field near mountain under sunset", "tags": ["nature", "forest", "tree"]}, {"title": "It was all a dream", "description": "body of water in front of brown soil digital art", "tags": ["nature", "landscape", "fantasy"]}, {"title": "Fairy Bonsai", "description": "yellow leaf tree between calm body of water at daytime", "tags": ["nature", "tree", "water"]}, {"title": "Kungstr\u00e4dg\u00e5rden cherry blossom", "description": "low angle photo of cherry blossoms tree", "tags": ["nature", "flower", "spring"]}, {"title": "I hiked nearly a hundred miles in Iceland, and yet one of my best photos from the trip was only a 2-minute walk from the parking lot.", "description": "waterfalls near cave at daytime", "tags": ["landscape", "iceland", "waterfall"]}, {"title": "I woke up to go and see the sunset. Lucky my heart told me to take my camera with me. here is an image for you all to use in any way. in a good way.", "description": "time lapse photography of water under sunset", "tags": ["nature", "maldives", "sea"]}, {"title": "sunrise", "description": "mountain reflection on body of water", "tags": ["nature", "wallpaper", "mountain"]}, {"title": "Shot in the agricultural heartland of California. This is the side of the Golden State you don\u2019t see so often. Please credit my instagram @adele_payman if you use this photo.", "description": "green leafed plants during daytime", "tags": ["nature", "wine", "farm"]}, {"title": "Bloody Moon", "description": "full moon and clouds", "tags": ["sky", "moon", "halloween"]}, {"title": "Taken near sunset at White Sands National Monument, New Mexico, USA", "description": "white sand", "tags": ["nature", "wallpaper", "desert"]}, {"title": "Imagine you are above the fog. Seeing the sun set. Then you turn around and see this. A mountain summit peaking out of the fog and catching fire. Goosebumps all over your body. And a refreshing feeling of joy and thankfulness filling up your body. This is Switzerland. This I can call my home. I really appreciate that a lot lately.", "description": "aerial view of mountain", "tags": ["sky", "nature", "landscape"]}, {"title": "Pink flowering grass", "description": "selective focus photo of pink petaled flowers", "tags": ["nature", "flower", "pink"]}, {"title": "Lower Antelope Canyon", "description": "Antelope Canyon, Arizona", "tags": ["nature", "pink", "canyon"]}, {"title": "pink afternoon", "description": "snowfield with dried trees", "tags": ["landscape", "pastel", "winter"]}, {"title": "Suspension bridge in a forest", "description": "aerial photography of hanging bridge near trees", "tags": ["nature", "wallpaper", "desktop wallpapers"]}, {"title": "After we got up and out of our van that morning we took a little hike uphill and were presented with this foggy view.", "description": "green leafed trees covered by fog during daytime", "tags": ["nature", "forest", "grey"]}, {"title": "I love this pic that I took in Bali!", "description": "aerial photography of seashore", "tags": ["wallpaper", "water", "beach"]}, {"title": "When I was in Patagonia, I made sure to not miss a single sunrise or sunset. The color palettes that come out of the sky are incredible.", "description": "snow covered mountain", "tags": ["wallpaper", "patagonia", "argentina"]}, {"title": "I remember seeing a picture like this a long time ago. I knew at that point that I would have to go and experience it for myself one day. After some research, it turns out that if you wait until the end of the Summer the sun sets right at the top of the valley resulting in this magnificent sunset! \r\n\r\nI still feel like the picture doesn\u2019t even do it justice!", "description": "aerial view of grass mountains", "tags": ["nature", "landscape", "winnats pass"]}, {"title": "Valley of Fires", "description": "black concrete road surrounded by brown rocks", "tags": ["wallpaper", "road", "travel"]}];
return items;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment