본문 바로가기
반응형

App4

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.
[MFC][2] Declare classes to shape and clear (클래스 선언하여 도형 그리고 지우기) Declare classes to shape and clear클래스 선언하여 도형 그리고 지우기[MFC][2] 2022.08.20 - [Development Solutions/MFC] - [MFC][1] To save click coordinates using a CList class (CList 클래스를 이용한 클릭 좌표 저장하기) [MFC][1] To save click coordinates using a CList class (CList 클래스를 이용한 클릭 좌표 저장하기)[MFC][1] To save click coordinates using a CList class CList 클래스를 이용한 클릭 좌표 저장하기 왼쪽 마우스 클릭한 경우 클릭한 위치와 시간 간격을 알림 창으로 출력하고, 오른쪽 마.. 2022. 8. 20.
[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: n.. 2021. 10. 31.
반응형