Flutter style의 'title'은 deprecated가 되어 'headline6'이 된 모양.
어느 날, title이 deprecated가 되었다. .
Flutter 스타일에서 사용하는 title
가 title
입니다. .
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
initializeDateFormatting('ja');
return MaterialApp(
title: 'Persona Expenses',
theme: ThemeData(
primarySwatch: Colors.red,
accentColor: Colors.amber,
fontFamily: 'Quicksand',
textTheme: ThemeData.light().textTheme.copyWith(
title: TextStyle(
fontFamily: 'OpenSans',
fontSize: 18,
fontWeight: FontWeight.bold)),
home: MyHomePage(),
);
}
}
headline6 사용하기
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
initializeDateFormatting('ja');
return MaterialApp(
title: 'Persona Expenses',
theme: ThemeData(
primarySwatch: Colors.red,
accentColor: Colors.amber,
fontFamily: 'Quicksand',
textTheme: ThemeData.light().textTheme.copyWith(
// 変更!
headline6: TextStyle(
fontFamily: 'OpenSans',
fontSize: 18,
fontWeight: FontWeight.bold)),
home: MyHomePage(),
);
}
}
참고
Reference
이 문제에 관하여(Flutter style의 'title'은 deprecated가 되어 'headline6'이 된 모양.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kokogento/items/6252b40897e9503656c6
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
initializeDateFormatting('ja');
return MaterialApp(
title: 'Persona Expenses',
theme: ThemeData(
primarySwatch: Colors.red,
accentColor: Colors.amber,
fontFamily: 'Quicksand',
textTheme: ThemeData.light().textTheme.copyWith(
title: TextStyle(
fontFamily: 'OpenSans',
fontSize: 18,
fontWeight: FontWeight.bold)),
home: MyHomePage(),
);
}
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
initializeDateFormatting('ja');
return MaterialApp(
title: 'Persona Expenses',
theme: ThemeData(
primarySwatch: Colors.red,
accentColor: Colors.amber,
fontFamily: 'Quicksand',
textTheme: ThemeData.light().textTheme.copyWith(
// 変更!
headline6: TextStyle(
fontFamily: 'OpenSans',
fontSize: 18,
fontWeight: FontWeight.bold)),
home: MyHomePage(),
);
}
}
참고
Reference
이 문제에 관하여(Flutter style의 'title'은 deprecated가 되어 'headline6'이 된 모양.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kokogento/items/6252b40897e9503656c6
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Flutter style의 'title'은 deprecated가 되어 'headline6'이 된 모양.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kokogento/items/6252b40897e9503656c6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)