This file contains 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 SwiftUI | |
private struct DatepickerColor: ViewModifier { | |
let color: Color | |
func body(content: Content) -> some View { | |
content | |
.colorScheme(.dark) | |
.colorMultiply(color) | |
} |
This file contains 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 React from 'react' | |
import NProgress from 'nprogress' | |
import Router from 'next/router' | |
import { Global, css } from '@emotion/core' | |
let timeout | |
const start = () => { | |
timeout = setTimeout(NProgress.start, 100) | |
} |
This file contains 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
// | |
// Bundle-Decodable.swift | |
// Moonshot | |
// | |
// Created by Glenn Gijsberts on 13/09/2020. | |
// Copyright © 2020 Glenn Gijsberts. All rights reserved. | |
// | |
import Foundation |