본문 바로가기
반응형

App3

How to Reset Mac OS X Permissions (Mac OS X 권한 초기화 방법) How to Reset Mac OS X Permissions Mac OS X 권한 초기화 방법 Mac OS 에서 애플리케이션을 개발하다보면 개발하고 있는 애플리케이션의 권한 초기화가 필요할 때가 있다. 이 때 tccutil 명령어를 사용하면 된다. (When developing applications in Mac OS, there are times when it is necessary to initialize the permissions of the application being developed. In this case, you can use the tccutil command.) - 특정 서비스의 권한 설정 초기화 (- Initialize permission settings for specific .. 2022. 10. 4.
[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.
[flutter] How to adjust the height of the Grid View widget(그리드 뷰 위젯 높이 조절하는 방법) [flutter] How to adjust the height of the Grid View widget (그리드 뷰 위젯 높이 조절하는 방법) GridView.count의 childAspectRatio를 설정하면 된다. (Set the childAspectRatio of GridView.count.) Widget build(BuildContext context) { var size = MediaQuery.of(context).size; final double itemHeight = (size.height - kToolbarHeight - 24) / 2; final double itemWidth = size.width / 2; return new Scaffold( appBar: new AppBar( ti.. 2021. 10. 31.
반응형