[flutter] WAppbar03
스샷
코드
import 'package:flutter/material.dart';
/// WAppbar03
/// title : WAppbar02(appbar 기본) 에서 배경 색상 제거 및 투명화 적용
class WAppbar03 extends StatelessWidget {
const WAppbar03({Key? key}) : super(key: key);
final String title = 'WAppbar03';
Widget build(BuildContext context) {
TextStyle style = TextStyle(color: Color(0xff000000));
return MaterialApp(
debugShowCheckedModeBanner: false,
title: title,
home: Scaffold(
appBar: AppBar(
backgroundColor: Color(0x00FFFFFF),
shadowColor: Color(0x00FFFFFF),
leading: Text(
'leading',
style: style,
),
bottom: PreferredSize(
child: Text(
'bottom',
style: style,
),
preferredSize: Size(10, 10),
),
title: Text(
'title',
style: style,
),
actions: [
Text(
'ac1',
style: style,
),
Text(
'ac2',
style: style,
),
],
flexibleSpace: Text(
'flexibleSpace',
style: style,
),
),
),
);
}
}
Author And Source
이 문제에 관하여([flutter] WAppbar03), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@wonsama/wappbar03저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)