개발이 좋아서/Flutter가 좋아서

    [flutter] Scrollable Widgets_Scrollbar

    [flutter] Scrollable Widgets_Scrollbar

    1) 2) const /colors.dart import 'package:flutter/material.dart'; const rainbowColors = [ Colors.red, Colors.orange, Colors.yellow, Colors.green, Colors.blue, Colors.indigo, Colors.purple, ]; 3) layout /main_layout.dart import 'package:flutter/material.dart'; class MainLayout extends StatelessWidget { final String title; final Widget body; const MainLayout({ required this.title, required this.bod..

    [flutter] Scrollable Widgets_CustomScrollView

    [flutter] Scrollable Widgets_CustomScrollView

    1) 2) const /colors.dart import 'package:flutter/material.dart'; const rainbowColors = [ Colors.red, Colors.orange, Colors.yellow, Colors.green, Colors.blue, Colors.indigo, Colors.purple, ]; 3) layout /main_layout.dart import 'package:flutter/material.dart'; class MainLayout extends StatelessWidget { final String title; final Widget body; const MainLayout({ required this.title, required this.bod..

    [flutter] Scrollable Widgets_ReorderableListView

    [flutter] Scrollable Widgets_ReorderableListView

    1) 2) const /colors.dart import 'package:flutter/material.dart'; const rainbowColors = [ Colors.red, Colors.orange, Colors.yellow, Colors.green, Colors.blue, Colors.indigo, Colors.purple, ]; 3) layout /main_layout.dart import 'package:flutter/material.dart'; class MainLayout extends StatelessWidget { final String title; final Widget body; const MainLayout({ required this.title, required this.bod..

    [flutter] Scrollable Widgets_GridView

    [flutter] Scrollable Widgets_GridView

    1) 2) const /colors.dart import 'package:flutter/material.dart'; const rainbowColors = [ Colors.red, Colors.orange, Colors.yellow, Colors.green, Colors.blue, Colors.indigo, Colors.purple, ]; 3) layout /main_layout.dart import 'package:flutter/material.dart'; class MainLayout extends StatelessWidget { final String title; final Widget body; const MainLayout({ required this.title, required this.bod..

    [flutter] Scrollable Widgets_ListView

    [flutter] Scrollable Widgets_ListView

    1) 2) const /colors.dart import 'package:flutter/material.dart'; const rainbowColors = [ Colors.red, Colors.orange, Colors.yellow, Colors.green, Colors.blue, Colors.indigo, Colors.purple, ]; 3) layout /main_layout.dart import 'package:flutter/material.dart'; class MainLayout extends StatelessWidget { final String title; final Widget body; const MainLayout({ required this.title, required this.bod..

    [flutter] Scrollable Widgets_SingleChildScrollView

    [flutter] Scrollable Widgets_SingleChildScrollView

    1) 2) const /colors.dart import 'package:flutter/material.dart'; const rainbowColors = [ Colors.red, Colors.orange, Colors.yellow, Colors.green, Colors.blue, Colors.indigo, Colors.purple, ]; 3) layout /main_layout.dart import 'package:flutter/material.dart'; class MainLayout extends StatelessWidget { final String title; final Widget body; const MainLayout({ required this.title, required this.bod..

    [flutter] 켈린더 스케쥴러_최종

    [flutter] 켈린더 스케쥴러_최종

    1) 2) component /calendar.dart import 'package:calendar_scheduler/const/colors.dart'; import 'package:flutter/material.dart'; import 'package:table_calendar/table_calendar.dart'; class Calendar extends StatelessWidget { final DateTime? selectedDay; final DateTime focusedDay; final OnDaySelected onDaySelected; const Calendar({ Key? key, required this.selectedDay, required this.focusedDay, require..

    [flutter] 켈린더 스케쥴러_database 생성

    [flutter] 켈린더 스케쥴러_database 생성

    1) 2) model /category_color.dart import 'package:drift/drift.dart'; class CategoryColors extends Table { // PRIMARY KEY IntColumn get id => integer()(); // 색상 코드 TextColumn get hexCode => text()(); } /schedule.dart import 'package:drift/drift.dart'; class Schedules extends Table { // PRIMARY KEY IntColumn get id => integer().autoIncrement()(); // 내용 TextColumn get content => text()(); // 일정 날짜 D..

    [flutter] 켈린더 스케쥴러_UI 구현

    [flutter] 켈린더 스케쥴러_UI 구현

    1) 2) component /calendar.dart import 'package:calendar_scheduler/const/colors.dart'; import 'package:flutter/material.dart'; import 'package:table_calendar/table_calendar.dart'; class Calendar extends StatelessWidget { final DateTime? selectedDay; final DateTime focusedDay; final OnDaySelected onDaySelected; const Calendar({ Key? key, required this.selectedDay, required this.focusedDay, require..

    [flutter] 켈린더 스케쥴러_환경세팅

    [flutter] 켈린더 스케쥴러_환경세팅

    1) package 다운 - table_calendar - intl - drift