본문 바로가기

UI32

Flutter 더 많은 옵션을 위해 스와이프 목록 항목 (플러터), Swipe List Item for more options (Flutter) 질문 Somedays ago I decided to choose an Ui for an app from Pinterest to practice building apps with Flutter but I'm stuck with the Slider which shows an "more" and "delete" button on horizontal drag. Picture on the right. I don't have enough knowledge to use Gestures combined with Animations to create something like this in flutter. Thats why I hope that someone of you can make an example for eve.. 2023. 7. 12.
Flutter 플러터에서 텍스트 위젯에 아이콘을 표시하는 방법은 무엇인가요?, How to show Icon in Text widget in flutter? 질문 나는 텍스트 위젯에서 아이콘을 보여주고 싶습니다. 어떻게 해야 할까요? 다음 코드는 IconData만 보여줍니다. Text("Click ${Icons.add} to add"); 답변 Flutter는 RichText() 내부에 위젯을 추가하기 위해 WidgetSpan()을 사용합니다. 예시: RichText( text: TextSpan( children: [ TextSpan( text: "Click ", ), WidgetSpan( child: Icon(Icons.add, size: 14), ), TextSpan( text: " to add", ), ], ), ) 위 코드는 다음과 같은 결과를 출력합니다: WidgetSpan의 자식 요소를 일반적인 위젯과 같이 다룰 수 있습니다. 2023. 6. 24.
Flutter FloatingActionButton의 크기를 변경하는 방법은 무엇인가요?, How to change the size of FloatingActionButton? 질문 저는 플러터에서 FloatingActionButton의 크기를 설정하려고 합니다. width/height를 설정하고 싶습니다. 즉, 버튼을 더 크게 만들고 싶습니다. 원형 버튼을 찾고 있었지만, 제가 찾은 것은 이것뿐이었습니다. 그래서 이것으로 작업을 시작했지만, 조금 더 큰 크기가 필요합니다. 답변 FittedBox를 사용하여 FAB를 Container 또는 SizedBox 안에 랩하고, 그 후에 너비와 높이를 변경하십시오. 예시: floatingActionButton: Container( height: 100.0, width: 100.0, child: FittedBox( child: FloatingActionButton(onPressed: () {}), ), ), 2023. 6. 24.
Flutter 플러터에서 BottomNavigationBar 스타일, Style BottomNavigationBar in Flutter 질문 저는 Flutter를 시도하고 있으며 앱의 BottomNavigationBar 색상을 변경하려고합니다. 그러나 제가 달성한 것은 BottomNavigationItem (아이콘 및 텍스트)의 색상을 변경하는 것뿐입니다. 여기에서 내 BottomNavigationBar을 선언하는 곳입니다: class _BottomNavigationState extends State{ @override Widget build(BuildContext context) { return new Scaffold( appBar: null, body: pages(), bottomNavigationBar:new BottomNavigationBar( items: [ new BottomNavigationBarItem( icon: cons.. 2023. 6. 23.