flutterui10.2 Flutter 플러터에서 흐릿한 장식 이미지, Blurred Decoration Image in Flutter 질문 내 앱의 배경은 다음과 같이 설정되어 있습니다: class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new MaterialApp( home: new Container( decoration: new BoxDecoration( image: new DecorationImage( image: new ExactAssetImage('assets/lol/aatrox.jpg'), fit: BoxFit.cover, ), ), child: new BackdropFilter(filter: new ImageFilter.blur(sigmaX: 600.0, sigmaY: 1000.0)), width: 400.0,.. 2024. 1. 3. Flutter 플러터 - OutlineInputBorder의 테두리 색상 변경, Flutter - Changing the border color of the OutlineInputBorder 질문 나는 OutlineInputBorder의 테두리 색상을 변경하려고 시도했지만, 무수한 방법을 시도해도 실패했습니다. 나는 buildDarkTheme() 함수를 통해 전체 테마 구성을 생성했지만, 테두리 색상을 노란색으로 변경할 수 없습니다. 아래는 이미지와 코드입니다: import 'package:flutter/material.dart'; void main() => runApp(new MyApp()); const kBlackHalf = const Color(0xFF212121); const kBlackLight = const Color(0xFF484848); const kBlack = const Color(0xFF000000); const kYellow = const Color(0xFFffd600).. 2023. 8. 23. 이전 1 다음