Theme

개발/Flutter

[Theme] TextStyle 전체 변경

기본text는 body2(bodyText2) 란 이름의 text style로 적용되어 있다. 이 body2의 TextStyle을 변경하면 모든 text가 공통적으로 변경된다. 참고 Use themes to share colors and font styles How to share colors and font styles throughout an app using Themes. docs.flutter.dev TextTheme class - material library - Dart API Material design text theme. Definitions for the various typographical styles found in Material Design (e.g., button, captio..

개발/Android

ActionBar 제거

액션바 제거 방법으로 themes.xml에 있는 style을 수정해서 제거하는 방법과 소스코드로 제거하는 방법이 있다. 1. themes.xml의 style수정하여 제거 app - res - values - themes - themes.xml 열기 초기엔 위 이미지와 비슷할 것이다. 모든 액티비티에서 제거 style의 parent를 Theme.MaterialComponents.DayNight.DarkActionBar에서 Theme.MaterialComponents.DayNight.NoActionBar로 변경하면 끝이다. 모든 액티비티에서 액션바가 사라지는 이유는 AndroidManifest.xml에서 application태그의 속성 중 android:theme의 값이 @style/Theme.TestApp..

leebera_
'Theme' 태그의 글 목록