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'; | |
| import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
| const Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
| void main() { | |
| // rivderpod 스코프 정의 | |
| runApp(ProviderScope(child: MyApp())); | |
| } |
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 "https://deno.land/x/[email protected]/load.ts"; | |
| import * as Line from "https://deno.land/x/[email protected]/mod.ts"; | |
| import uniq from "https://esm.sh/[email protected]/uniq?no-dts"; | |
| import lodashGet from "https://esm.sh/[email protected]/get?no-dts"; | |
| import * as log from "https://deno.land/std/log/mod.ts"; | |
| import { render } from "https://deno.land/x/[email protected]/mustache.ts"; | |
| await log.setup({ | |
| handlers: { | |
| stringFmt: new log.handlers.FileHandler("DEBUG", { |
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'; | |
| const 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
| (function (global, factory) { | |
| typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : | |
| typeof define === 'function' && define.amd ? define(factory) : | |
| (global = global || self, global.ScrollRestoration = factory()); | |
| }(this, (function () { 'use strict'; | |
| const SCROLL_RESTORATION_TIMEOUT_MS = 3000; | |
| const TRY_TO_SCROLL_INTERVAL_MS = 50; | |
| const disabled = window.history == null; |
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 'dart:math' as math; | |
| import 'package:flutter/material.dart'; | |
| class HorizontalLineBorder extends InputBorder { | |
| const HorizontalLineBorder({ | |
| BorderSide borderSide = const BorderSide(), | |
| this.borderRadius = const BorderRadius.only(), | |
| }) : assert(borderRadius != null), | |
| super(borderSide: borderSide); |
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'; | |
| class DotsIndicator extends StatelessWidget { | |
| DotsIndicator( | |
| {this.notifier, | |
| this.itemCount, | |
| this.onPageSelected, | |
| this.color = Colors.white, | |
| this.seletedColor = Colors.white, | |
| this.dotSize = 8.0, |
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'; | |
| import 'package:flutter/semantics.dart'; | |
| class LineText extends CustomPainter { | |
| final String text; | |
| final TextStyle style; | |
| final double padding; | |
| final Color strokeColor; | |
| final double strokeWidth; | |
| final Alignment alignment; |
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'; | |
| import 'dart:math' as math; | |
| import 'package:flutter/semantics.dart'; | |
| class OutlineLabelBox extends CustomPainter { | |
| final String labelText; | |
| final TextStyle labelStyle; | |
| final double labelPadding; | |
| final Color strokeColor; |
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
| <template lang="pug"> | |
| .dataLoader | |
| .loadingHeader(:style="{ height: pullHeight + 'px' }" v-show="PULL_DOWN === pull.type") | |
| .headerText(v-show="!pull.available") | |
| slot(:name="PULL_DOWN + '-before'"): span.defaultText Pull down | |
| .headerText(v-show="pull.available & PULL_DOWN !== loadingType") | |
| slot(:name="PULL_DOWN + '-ready'"): span.defaultText Pull down ready | |
| .headerText(v-show="PULL_DOWN === loadingType") | |
| slot(:name="PULL_DOWN + '-loading'"): span.defaultText Loading | |
| .loadingContent |
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
| package com.pixup.admin.common.util; | |
| import java.beans.PropertyDescriptor; | |
| import java.lang.reflect.Method; | |
| import java.lang.reflect.Modifier; | |
| import java.util.function.Predicate; | |
| import javax.annotation.Nullable; | |
| import org.springframework.beans.BeanUtils; | |
| import org.springframework.beans.BeansException; | |
| import org.springframework.beans.FatalBeanException; |
NewerOlder