본문 바로가기
반응형

분류 전체보기176

Random number (lottery) generator (range, number configurable) (무작위 번호 생성기(범위, 개수 설정 가능)) 무작위 번호 생성기(범위, 개수 설정 가능) Random number (lottery) generator (range, number configurable) https://github.com/shin0343/RanNumGenerator ​ Vanilla JS, CSS, HTML을 이용하여 원하는 범위 내에 원하는 개수 만큼의 난수를 생성하는 프로그램을 만들었습니다. ​ 실행을 위해서는 아래 주소로 진입합니다. (Using Vanilla JS, CSS, and HTML, I made a program that generates as many random numbers as you want within a desired range. ​To run, enter the address below.) https:/.. 2021. 11. 8.
To-Do List Calendar Website(To-Do List 일정 관리 웹사이트) To-Do List Calendar Website (To-Do List 일정 관리 웹사이트) ​ Vanilla JS + HTML + CSS 로 제작한 일정관리 웹사이트를 서버에 올렸습니다. 아래 링크를 타고 들어가면 웹사이트(to-do list)를 사용할 수 있습니다! https://shin0343.github.io/ToDoList/​ To Do List shin0343.github.io 입력하신 정보는 서버에 저장되지 않으니 걱정 없이 사용하셔도 됩니다. 사용자의 피드백을 받으며 업그레이드 해나갈 예정입니다. 사용 중 문의, 요구사항이 있다면 언제든지 댓글 남겨주세요~ [English](I uploaded a calendar website produced by Vanilla JS + HTML + CSS.. 2021. 11. 7.
[flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) [flutter] Fixing errors when you insert ListView with other widgets in the column (Column에 다른 위젯과 함께 ListView를 넣을때 오류 해결) 예를 들어, 아래와 같은 코드에서는 Column 안에 여러 위젯과 함께 ListView가 구현되어있다. (For example, In the code below, ListView is implemented with several widgets in the column.) @override Widget build(BuildContext context) { // TODO: implement build return new Scaffold( appBar: new AppBar( title: new .. 2021. 11. 6.
[flutter] how to change background color of flutter app. (앱의 배경 색상 변경 방법) [flutter] how to change background color of flutter app. (앱의 배경 색상 변경 방법) 앱의 가장 바깥이 되는 위젯을 Scaffold로 구축하고 아래와 같이 backgroundColor를 지정해주면 된다. [English](Build the most external widget of the app into Scaffold You can designate the background color as follows.) import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); class MyApp extends StatelessWidget { @override Widget build(Bui.. 2021. 11. 5.
반응형