स्पंदन लेआउट आमतौर पर के एक पेड़ से बन रहे हैं Column
, Row
और Stack
विजेट। ये विजेट निर्माता तर्क है कि कैसे बच्चों के माता पिता के सापेक्ष बाहर रखी हैं इससे संबंधित नियम निर्धारित लेते हैं, और आप भी उन में लपेटकर करके अलग-अलग बच्चों के लेआउट को प्रभावित कर सकते Expanded
, Flexible
, Positioned
, Align
, या Center
विगेट्स।
उपयोग करके जटिल लेआउट बनाना भी संभव है CustomMultiChildLayout
। यह कैसे Scaffold
आंतरिक रूप से कार्यान्वित किया जाता है, और एक ऐप में इसका उपयोग कैसे करें इसका एक उदाहरण श्राइन डेमो में दिखाई देता है । आप एक लेयर का उपयोग कर सकते हैं LayoutBuilder
या कर सकते हैं CustomPaint
, या सेक्टर उदाहरणRenderObject
में दिखाए अनुसार बढ़ा सकते हैं । अपने लेआउट्स को मैन्युअल रूप से करना इस तरह से अधिक काम है और कोने के मामलों में त्रुटियों के लिए अधिक क्षमता बनाता है, इसलिए यदि आप कर सकते हैं तो मैं उच्च-स्तरीय लेआउट प्रिमिटिव के साथ प्राप्त करने का प्रयास करूंगा।
अपने विशिष्ट प्रश्नों के उत्तर देने के लिए:
- अपने ऐप बार तत्वों को स्थिति में लाने के लिए तर्कों
leading
और trailing
तर्कों का उपयोग करें AppBar
। यदि आप Row
इसके बजाय उपयोग करना चाहते हैं , तो a mainAxisAlignment
का उपयोग करें MainAxisAlignment.spaceBetween
।
- फायर आइकन और नंबर को नीचे की ओर रखने के लिए ए के
Row
साथ प्रयोग करें ।crossAxisAlignment
CrossAxisAlignment.center
- एक का प्रयोग करें
Column
एक साथ mainAxisAlignment
की MainAxisAlignment.spaceBetween
अपनी ऊपर और नीचे शीर्षक स्थिति। (आपको ListTile
सूची टाइलों को बिछाने के लिए उपयोग करने पर विचार करना चाहिए , लेकिन यदि आप ऐसा करते हैं तो आप सटीक स्थिति पर नियंत्रण खो देंगे।)
यहां एक कोड स्निपेट है जो आपके द्वारा प्रदान किए गए डिज़ाइन को लागू करता है। इस उदाहरण में मैंने IntrinsicHeight
गीत टाइलों की ऊंचाई निर्धारित करने के लिए एक का उपयोग किया , लेकिन आप उन्हें एक निश्चित ऊंचाई तक हार्ड कोडिंग करके प्रदर्शन में सुधार कर सकते हैं।
import 'package:flutter/material.dart';
void main() {
runApp(new MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
brightness: Brightness.dark,
primaryColorBrightness: Brightness.dark,
),
home: new HomeScreen(),
debugShowCheckedModeBanner: false,
);
}
}
class Song extends StatelessWidget {
const Song({ this.title, this.author, this.likes });
final String title;
final String author;
final int likes;
@override
Widget build(BuildContext context) {
TextTheme textTheme = Theme
.of(context)
.textTheme;
return new Container(
margin: const EdgeInsets.symmetric(horizontal: 10.0, vertical: 5.0),
padding: const EdgeInsets.symmetric(horizontal: 15.0, vertical: 10.0),
decoration: new BoxDecoration(
color: Colors.grey.shade200.withOpacity(0.3),
borderRadius: new BorderRadius.circular(5.0),
),
child: new IntrinsicHeight(
child: new Row(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
new Container(
margin: const EdgeInsets.only(top: 4.0, bottom: 4.0, right: 10.0),
child: new CircleAvatar(
backgroundImage: new NetworkImage(
'http://thecatapi.com/api/images/get?format=src'
'&size=small&type=jpg#${title.hashCode}'
),
radius: 20.0,
),
),
new Expanded(
child: new Container(
child: new Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
new Text(title, style: textTheme.subhead),
new Text(author, style: textTheme.caption),
],
),
),
),
new Container(
margin: new EdgeInsets.symmetric(horizontal: 5.0),
child: new InkWell(
child: new Icon(Icons.play_arrow, size: 40.0),
onTap: () {
},
),
),
new Container(
margin: new EdgeInsets.symmetric(horizontal: 5.0),
child: new InkWell(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
new Icon(Icons.favorite, size: 25.0),
new Text('${likes ?? ''}'),
],
),
onTap: () {
},
),
),
],
),
),
);
}
}
class Feed extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new ListView(
children: [
new Song(title: 'Trapadelic lobo', author: 'lillobobeats', likes: 4),
new Song(title: 'Different', author: 'younglowkey', likes: 23),
new Song(title: 'Future', author: 'younglowkey', likes: 2),
new Song(title: 'ASAP', author: 'tha_producer808', likes: 13),
new Song(title: '🌲🌲🌲', author: 'TraphousePeyton'),
new Song(title: 'Something sweet...', author: '6ryan'),
new Song(title: 'Sharpie', author: 'Fergie_6'),
],
);
}
}
class CustomTabBar extends AnimatedWidget implements PreferredSizeWidget {
CustomTabBar({ this.pageController, this.pageNames })
: super(listenable: pageController);
final PageController pageController;
final List<String> pageNames;
@override
final Size preferredSize = new Size(0.0, 40.0);
@override
Widget build(BuildContext context) {
TextTheme textTheme = Theme
.of(context)
.textTheme;
return new Container(
height: 40.0,
margin: const EdgeInsets.all(10.0),
padding: const EdgeInsets.symmetric(horizontal: 20.0),
decoration: new BoxDecoration(
color: Colors.grey.shade800.withOpacity(0.5),
borderRadius: new BorderRadius.circular(20.0),
),
child: new Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: new List.generate(pageNames.length, (int index) {
return new InkWell(
child: new Text(
pageNames[index],
style: textTheme.subhead.copyWith(
color: Colors.white.withOpacity(
index == pageController.page ? 1.0 : 0.2,
),
)
),
onTap: () {
pageController.animateToPage(
index,
curve: Curves.easeOut,
duration: const Duration(milliseconds: 300),
);
}
);
})
.toList(),
),
);
}
}
class HomeScreen extends StatefulWidget {
@override
_HomeScreenState createState() => new _HomeScreenState();
}
class _HomeScreenState extends State<HomeScreen> {
PageController _pageController = new PageController(initialPage: 2);
@override
build(BuildContext context) {
final Map<String, Widget> pages = <String, Widget>{
'My Music': new Center(
child: new Text('My Music not implemented'),
),
'Shared': new Center(
child: new Text('Shared not implemented'),
),
'Feed': new Feed(),
};
TextTheme textTheme = Theme
.of(context)
.textTheme;
return new Stack(
children: [
new Container(
decoration: new BoxDecoration(
gradient: new LinearGradient(
begin: FractionalOffset.topCenter,
end: FractionalOffset.bottomCenter,
colors: [
const Color.fromARGB(255, 253, 72, 72),
const Color.fromARGB(255, 87, 97, 249),
],
stops: [0.0, 1.0],
)
),
child: new Align(
alignment: FractionalOffset.bottomCenter,
child: new Container(
padding: const EdgeInsets.all(10.0),
child: new Text(
'T I Z E',
style: textTheme.headline.copyWith(
color: Colors.grey.shade800.withOpacity(0.8),
fontWeight: FontWeight.bold,
),
),
)
)
),
new Scaffold(
backgroundColor: const Color(0x00000000),
appBar: new AppBar(
backgroundColor: const Color(0x00000000),
elevation: 0.0,
leading: new Center(
child: new ClipOval(
child: new Image.network(
'http://i.imgur.com/TtNPTe0.jpg',
),
),
),
actions: [
new IconButton(
icon: new Icon(Icons.add),
onPressed: () {
},
),
],
title: const Text('tofu\'s songs'),
bottom: new CustomTabBar(
pageController: _pageController,
pageNames: pages.keys.toList(),
),
),
body: new PageView(
controller: _pageController,
children: pages.values.toList(),
),
),
],
);
}
}
अंतिम नोट: इस उदाहरण में, मैं एक नियमित इस्तेमाल किया AppBar
है, लेकिन आप भी एक इस्तेमाल कर सकते हैं CustomScrollView
पिन किए गए के साथ SliverAppBar
है कि एक elevation
0.0 की। यह सामग्री को दिखाई देगा क्योंकि यह आपके ऐप बार के पीछे स्क्रॉल करता है। यह अच्छी तरह से खेलने के लिए इसे पाने के लिए मुश्किल है PageView
, क्योंकि यह एक निश्चित आकार के क्षेत्र की उम्मीद कर रहा है कि खुद को बाहर रखना है।