scroll 4

[ FLUTTER ] ScrollToTop 구현 예제

목차 프로젝트 생성 및 리스트뷰 생성 애니메이션 구현 스크롤 이동 (완성) 1. 프로젝트 생성 및 리스트뷰 생성 * 소스코드 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( title: 'Example', debugShowCheckedModeBanner: false, theme: ThemeData(primarySwatch: Colors.blue), ho..

App/Flutter 거북 2022.02.11

[ FLUTTER ] GridView 고정높이 주는 방법

ㅁhttps://github.com/flutter/flutter/issues/55290 Change height of GridView row to fixed height · Issue #55290 · flutter/flutter I've noticed that GridView makes each child a square.. I know we can change dynamically height of grid view row by setting childAspectRatio. That however doesn't make it fixed so when the d... github.com * 선언부 class SliverGridDelegateWithFixedCrossAxisCountAndFixedHeigh..

Team/난감했던 이슈들 거북 2021.09.17