1. ভূমিকা
ম্যাটেরিয়াল 3 হল গুগলের ওপেন সোর্স ডিজাইন সিস্টেমের সর্বশেষ সংস্করণ। Flutter ম্যাটেরিয়াল 3 ব্যবহার করে সুন্দর অ্যাপ্লিকেশন তৈরির জন্য সমর্থন প্রসারিত করছে। এই কোডল্যাবে আপনি একটি খালি ফ্লাটার অ্যাপ্লিকেশন দিয়ে শুরু করুন এবং ফ্লটার সহ মেটেরিয়াল 3 ব্যবহার করে একটি সম্পূর্ণ স্টাইল এবং অ্যানিমেটেড অ্যাপ্লিকেশন তৈরি করুন।
আপনি কি নির্মাণ করবেন
এই কোডল্যাবে, আপনি একটি মক মেসেজিং অ্যাপ্লিকেশন তৈরি করতে যাচ্ছেন। আপনার অ্যাপ হবে:
- অভিযোজিত নকশা ব্যবহার করুন, তাই এটি ডেস্কটপ বা মোবাইলে কাজ করে।
- বিভিন্ন লেআউটের মধ্যে সহজে এবং তরলভাবে স্যুইচ করতে অ্যানিমেশন ব্যবহার করুন।
- ভাবপূর্ণ স্টাইলিং জন্য উপাদান 3 ব্যবহার করুন.
- অ্যান্ড্রয়েড, আইওএস, ওয়েব, উইন্ডোজ, লিনাক্স এবং ম্যাকোসে চালান।
এই কোডল্যাবটি ফ্লটার সহ উপাদান 3-এ ফোকাস করা হয়েছে। অ-প্রাসঙ্গিক ধারণা এবং কোড ব্লকগুলিকে চকচকে করা হয়েছে এবং আপনাকে কেবল অনুলিপি এবং পেস্ট করার জন্য সরবরাহ করা হয়েছে।
2. আপনার ফ্লটার পরিবেশ সেট আপ করুন
আপনি কি প্রয়োজন হবে
- Flutter SDK সংস্করণ 3.10 বা তার উপরে।
- একটি সম্পাদক, উদাহরণস্বরূপ VS কোড , বা Android স্টুডিও ।
এই কোডল্যাবটি অ্যান্ড্রয়েড, আইওএস, ওয়েব, উইন্ডোজ, লিনাক্স এবং ম্যাকওএস-এ স্থাপন করার জন্য পরীক্ষা করা হয়েছে। এই স্থাপনার লক্ষ্যগুলির কিছুর জন্য অতিরিক্ত সফ্টওয়্যার ইনস্টল করা প্রয়োজন যাতে এটি স্থাপন করতে সক্ষম হয়। আপনার প্ল্যাটফর্ম সঠিকভাবে সেট আপ করা হয়েছে কিনা তা বোঝার একটি ভাল উপায় হল flutter doctor
চালানো।
$ flutter doctor Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 3.10.1, on macOS 13.4 22F5037d darwin-arm64, locale en) [✓] Android toolchain - develop for Android devices (Android SDK version 33.0.0) [✓] Xcode - develop for iOS and macOS (Xcode 14.3) [✓] Chrome - develop for the web [✓] Android Studio (version 2021.2) [✓] IntelliJ IDEA Community Edition (version 2022.2.2) [✓] VS Code (version 1.78.2) [✓] Connected device (2 available) [✓] Network resources • No issues found!
আউটপুটে তালিকাভুক্ত কোনো সমস্যা থাকলে যা আপনার নির্বাচিত স্থাপনার লক্ষ্যকে প্রভাবিত করে, আরও বিস্তারিত তথ্য পেতে flutter doctor -v
চালান। আপনি যদি flutter doctor -v
দ্বারা তালিকাভুক্ত পদক্ষেপগুলি চেষ্টা করার পরে সমস্যাটি সমাধান করতে না পারেন তবে ফ্লটার সম্প্রদায়ের সাথে যোগাযোগ করার কথা বিবেচনা করুন৷
3. শুরু করা
একটি খালি ফ্লাটার অ্যাপ্লিকেশন তৈরি করা হচ্ছে
বেশিরভাগ ফ্লটার ডেভেলপাররা flutter create
সহ একটি বেসিক, "কাউন্টিং বোতাম ট্যাপস" অ্যাপ তৈরি করে এবং তারপর তাদের যা প্রয়োজন নেই তা সরিয়ে দিতে কয়েক মিনিট সময় ব্যয় করে। Flutter 3.7 অনুযায়ী আপনি একটি খালি ফ্লাটার প্রজেক্ট তৈরি করতে পারেন ( --empty
param ব্যবহার করে), একটি অ্যাপ চালু এবং চালানোর জন্য শুধুমাত্র প্রয়োজনীয় জিনিসগুলি সহ।
$ flutter create animated_responsive_layout --empty Creating project animated_responsive_layout... Running "flutter pub get" in animated_responsive_layout... Resolving dependencies in animated_responsive_layout... (1.4s) + async 2.10.0 + boolean_selector 2.1.1 + characters 1.2.1 + clock 1.1.1 + collection 1.17.0 + fake_async 1.3.1 + flutter 0.0.0 from sdk flutter + flutter_lints 2.0.1 + flutter_test 0.0.0 from sdk flutter + js 0.6.5 (0.6.6 available) + lints 2.0.1 + matcher 0.12.13 (0.12.14 available) + material_color_utilities 0.2.0 + meta 1.8.0 + path 1.8.2 (1.8.3 available) + sky_engine 0.0.99 from sdk flutter + source_span 1.9.1 + stack_trace 1.11.0 + stream_channel 2.1.1 + string_scanner 1.2.0 + term_glyph 1.2.1 + test_api 0.4.16 (0.4.18 available) + vector_math 2.1.4 Changed 23 dependencies in animated_responsive_layout! Wrote 126 files. All done! You can find general documentation for Flutter at: https://docs.flutter.dev/ Detailed API documentation is available at: https://api.flutter.dev/ If you prefer video documentation, consider: https://www.youtube.com/c/flutterdev In order to run your empty application, type: $ cd animated_responsive_layout $ flutter run Your empty application code is in animated_responsive_layout/lib/main.dart.
আপনি এই কোডটি চালাতে পারেন, হয় আপনার কোড এডিটরের মাধ্যমে বা সরাসরি কমান্ড লাইন থেকে। আপনি কোন টুলচেইন ইনস্টল করেছেন তার উপর নির্ভর করে এবং আপনার সিমুলেটর বা এমুলেটর চলছে কিনা, আপনাকে কোন স্থাপনার লক্ষ্যে অ্যাপ্লিকেশন চালানো হবে তা সিদ্ধান্ত নিতে বলা হতে পারে। এখানে, উদাহরণস্বরূপ, কিভাবে আপনি "Chome" বিকল্পটি নির্বাচন করে একটি ওয়েব ব্রাউজারে খালি অ্যাপ্লিকেশন চালানোর জন্য চয়ন করতে পারেন।
$ cd animated_responsive_layout $ flutter run Multiple devices found: macOS (desktop) • macos • darwin-arm64 • macOS 13.2 22D5038i darwin-arm64 Chrome (web) • chrome • web-javascript • Google Chrome 108.0.5359.124 [1]: macOS (macos) [2]: Chrome (chrome) Please choose one (To quit, press "q/Q"): 2 Launching lib/main.dart on Chrome in debug mode... Waiting for connection from debug service on Chrome... 10.0s This app is linked to the debug service: ws://127.0.0.1:56599/gxM2gOqxliM=/ws Debug service listening on ws://127.0.0.1:56599/gxM2gOqxliM=/ws 💪 Running with sound null safety 💪 🔥 To hot restart changes while running, press "r" or "R". For a more detailed help message, press "h". To quit, press "q". An Observatory debugger and profiler on Chrome is available at: http://127.0.0.1:56599/gxM2gOqxliM= The Flutter DevTools debugger and profiler on Chrome is available at: http://127.0.0.1:9100?uri=http://127.0.0.1:56599/gxM2gOqxliM=
এই পরিস্থিতিতে, আপনি একটি Chrome ওয়েব ব্রাউজারে খালি অ্যাপটি চলমান দেখতে পাবেন। আপনি এটিকে Android, iOS বা আপনার ডেস্কটপ অপারেটিং সিস্টেমে চালানোর জন্যও বেছে নিতে পারেন।
4. একটি মেসেঞ্জার অ্যাপ তৈরি করুন
অবতার তৈরি করা
প্রতিটি বার্তাপ্রেরণ অ্যাপ্লিকেশন তার ব্যবহারকারীদের ছবি প্রয়োজন. এই চিত্রগুলি ব্যবহারকারীদের প্রতিনিধিত্ব করে এবং অবতার হিসাবে উল্লেখ করা হয়৷ এরপরে, প্রজেক্ট ট্রির শীর্ষে একটি সম্পদ ডিরেক্টরি তৈরি করুন এবং এই কোডল্যাবের জন্য গিট রিপোজিটরি থেকে একাধিক ছবি দিয়ে এটি পূরণ করুন। এটি করার একটি উপায় হল wget
কমান্ড-লাইন টুলটি নিম্নরূপ ব্যবহার করা।
$ mkdir assets $ cd assets $ for name in avatar_1 avatar_2 avatar_3 avatar_4 \ avatar_5 avatar_6 avatar_7 thumbnail_1; \ do wget https://raw.githubusercontent.com/flutter/codelabs/main/animated-responsive-layout/step_04/assets/$name.png ; \ done
এটি আপনার অ্যাপের assets
ডিরেক্টরিতে নিম্নলিখিত চিত্রগুলি ডাউনলোড করে:
| | | |
| | | |
এখন আপনার কাছে অবতার ইমেজ সম্পদ আছে, আপনাকে সেগুলিকে pubspec.yaml
ফাইলে যুক্ত করতে হবে:
pubspec.yaml
name: animated_responsive_layout
description: A new Flutter project.
publish_to: 'none'
version: 0.1.0
environment:
sdk: '>=3.0.1 <4.0.0'
dependencies:
flutter:
sdk: flutter
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^2.0.0
flutter:
uses-material-design: true
# Add from here...
assets:
- assets/avatar_1.png
- assets/avatar_2.png
- assets/avatar_3.png
- assets/avatar_4.png
- assets/avatar_5.png
- assets/avatar_6.png
- assets/avatar_7.png
- assets/thumbnail_1.png
# ... to here.
অ্যাপ্লিকেশনটি যে বার্তাগুলি প্রদর্শন করে তার জন্য একটি ডেটা উত্স প্রয়োজন৷ আপনার প্রকল্পের lib
ডিরেক্টরিতে, একটি models
সাবডিরেক্টরি তৈরি করুন। আপনি mkdir
এর সাথে কমান্ড লাইনে বা আপনার পছন্দের পাঠ্য সম্পাদকে এটি করতে পারেন। নিম্নলিখিত বিষয়বস্তু সহ lib/models
ডিরেক্টরিতে একটি models.dart
ফাইল তৈরি করুন:
lib/models/models.dart
class Attachment {
const Attachment({
required this.url,
});
final String url;
}
class Email {
const Email({
required this.sender,
required this.recipients,
required this.subject,
required this.content,
this.replies = 0,
this.attachments = const [],
});
final User sender;
final List<User> recipients;
final String subject;
final String content;
final List<Attachment> attachments;
final double replies;
}
class Name {
const Name({
required this.first,
required this.last,
});
final String first;
final String last;
String get fullName => '$first $last';
}
class User {
const User({
required this.name,
required this.avatarUrl,
required this.lastActive,
});
final Name name;
final String avatarUrl;
final DateTime lastActive;
}
এখন আপনার কাছে ডেটার আকারের একটি সংজ্ঞা আছে, নিম্নলিখিত বিষয়বস্তু সহ lib/models
ডিরেক্টরিতে একটি data.dart
ফাইল তৈরি করুন:
lib/models/data.dart
import 'models.dart';
final User user_0 = User(
name: const Name(first: 'Me', last: ''),
avatarUrl: 'assets/avatar_1.png',
lastActive: DateTime.now());
final User user_1 = User(
name: const Name(first: '老', last: '强'),
avatarUrl: 'assets/avatar_2.png',
lastActive: DateTime.now().subtract(const Duration(minutes: 10)));
final User user_2 = User(
name: const Name(first: 'So', last: 'Duri'),
avatarUrl: 'assets/avatar_3.png',
lastActive: DateTime.now().subtract(const Duration(minutes: 20)));
final User user_3 = User(
name: const Name(first: 'Lily', last: 'MacDonald'),
avatarUrl: 'assets/avatar_4.png',
lastActive: DateTime.now().subtract(const Duration(hours: 2)));
final User user_4 = User(
name: const Name(first: 'Ziad', last: 'Aouad'),
avatarUrl: 'assets/avatar_5.png',
lastActive: DateTime.now().subtract(const Duration(hours: 6)));
final List<Email> emails = [
Email(
sender: user_1,
recipients: [],
subject: '豆花鱼',
content: '最近忙吗?昨晚我去了你最爱的那家饭馆,点了他们的特色豆花鱼,吃着吃着就想你了。',
),
Email(
sender: user_2,
recipients: [],
subject: 'Dinner Club',
content:
"I think it's time for us to finally try that new noodle shop downtown that doesn't use menus. Anyone else have other suggestions for dinner club this week? I'm so intrigued by this idea of a noodle restaurant where no one gets to order for themselves - could be fun, or terrible, or both :)\n\nSo",
),
Email(
sender: user_3,
recipients: [],
subject: 'This food show is made for you',
content:
"Ping– you'd love this new food show I started watching. It's produced by a Thai drummer who started getting recognized for the amazing vegan food she always brought to shows.",
attachments: [const Attachment(url: 'assets/thumbnail_1.png')]),
Email(
sender: user_4,
recipients: [],
subject: 'Volunteer EMT with me?',
content:
'What do you think about training to be volunteer EMTs? We could do it together for moral support. Think about it??',
),
];
final List<Email> replies = [
Email(
sender: user_2,
recipients: [
user_3,
user_2,
],
subject: 'Dinner Club',
content:
"I think it's time for us to finally try that new noodle shop downtown that doesn't use menus. Anyone else have other suggestions for dinner club this week? I'm so intrigued by this idea of a noodle restaurant where no one gets to order for themselves - could be fun, or terrible, or both :)\n\nSo",
),
Email(
sender: user_0,
recipients: [
user_3,
user_2,
],
subject: 'Dinner Club',
content:
"Yes! I forgot about that place! I'm definitely up for taking a risk this week and handing control over to this mysterious noodle chef. I wonder what happens if you have allergies though? Lucky none of us have any otherwise I'd be a bit concerned.\n\nThis is going to be great. See you all at the usual time?",
),
];
সেই ডেটা হাতে নিয়ে, সেই ডেটা প্রদর্শনের জন্য কয়েকটি উইজেট সংজ্ঞায়িত করার সময় এসেছে৷ lib
অধীনে widgets
নামে একটি সাবডিরেক্টরি তৈরি করুন। আপনি widgets
চারটি ফাইল তৈরি করবেন, এবং আপনি চারটি তৈরি না হওয়া পর্যন্ত সম্ভবত আপনার সম্পাদকের কাছ থেকে কিছু সতর্কতা থাকবে৷ মনে রাখবেন, এই কোডল্যাবের উদ্দেশ্য হল ম্যাটেরিয়াল 3 ব্যবহার করে অ্যাপটিকে স্টাইল করা। সুতরাং, তালিকাভুক্ত বিষয়বস্তুর সাথে নিম্নলিখিত চারটি ফাইলের প্রতিটি যোগ করুন:
lib/widgets/email_list_view.dart
import 'package:flutter/material.dart';
import '../models/data.dart' as data;
import '../models/models.dart';
import 'email_widget.dart';
import 'search_bar.dart' as search_bar;
class EmailListView extends StatelessWidget {
const EmailListView({
super.key,
this.selectedIndex,
this.onSelected,
required this.currentUser,
});
final int? selectedIndex;
final ValueChanged<int>? onSelected;
final User currentUser;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: ListView(
children: [
const SizedBox(height: 8),
search_bar.SearchBar(currentUser: currentUser),
const SizedBox(height: 8),
...List.generate(
data.emails.length,
(index) {
return Padding(
padding: const EdgeInsets.only(bottom: 8.0),
child: EmailWidget(
email: data.emails[index],
onSelected: onSelected != null
? () {
onSelected!(index);
}
: null,
isSelected: selectedIndex == index,
),
);
},
),
],
),
);
}
}
ইমেলগুলির একটি তালিকা প্রদর্শন করতে সক্ষম হওয়া একটি বার্তাপ্রেরণ অ্যাপ্লিকেশন করতে সক্ষম হওয়া উচিত বলে মনে হচ্ছে। সম্পাদকের কাছ থেকে আপনার কয়েকটি অভিযোগ থাকবে, তবে আপনি পরবর্তী ফাইলটি যোগ করে সেগুলির কয়েকটি ঠিক করতে পারেন email_widget.dart
।
lib/widgets/email_widget.dart
import 'package:flutter/material.dart';
import '../models/models.dart';
import 'star_button.dart';
enum EmailType {
preview,
threaded,
primaryThreaded,
}
class EmailWidget extends StatefulWidget {
const EmailWidget({
super.key,
required this.email,
this.isSelected = false,
this.isPreview = true,
this.isThreaded = false,
this.showHeadline = false,
this.onSelected,
});
final bool isSelected;
final bool isPreview;
final bool showHeadline;
final bool isThreaded;
final void Function()? onSelected;
final Email email;
@override
State<EmailWidget> createState() => _EmailWidgetState();
}
class _EmailWidgetState extends State<EmailWidget> {
late final ColorScheme _colorScheme = Theme.of(context).colorScheme;
late Color unselectedColor = Color.alphaBlend(
_colorScheme.primary.withOpacity(0.08),
_colorScheme.surface,
);
Color get _surfaceColor => switch (widget) {
EmailWidget(isPreview: false) => _colorScheme.surface,
EmailWidget(isSelected: true) => _colorScheme.primaryContainer,
_ => unselectedColor,
};
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: widget.onSelected,
child: Card(
elevation: 0,
color: _surfaceColor,
clipBehavior: Clip.hardEdge,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
if (widget.showHeadline) ...[
EmailHeadline(
email: widget.email,
isSelected: widget.isSelected,
),
],
EmailContent(
email: widget.email,
isPreview: widget.isPreview,
isThreaded: widget.isThreaded,
isSelected: widget.isSelected,
),
],
),
),
);
}
}
class EmailContent extends StatefulWidget {
const EmailContent({
super.key,
required this.email,
required this.isPreview,
required this.isThreaded,
required this.isSelected,
});
final Email email;
final bool isPreview;
final bool isThreaded;
final bool isSelected;
@override
State<EmailContent> createState() => _EmailContentState();
}
class _EmailContentState extends State<EmailContent> {
late final ColorScheme _colorScheme = Theme.of(context).colorScheme;
late final TextTheme _textTheme = Theme.of(context).textTheme;
Widget get contentSpacer => SizedBox(height: widget.isThreaded ? 20 : 2);
String get lastActiveLabel {
final DateTime now = DateTime.now();
if (widget.email.sender.lastActive.isAfter(now)) throw ArgumentError();
final Duration elapsedTime =
widget.email.sender.lastActive.difference(now).abs();
return switch (elapsedTime) {
Duration(inSeconds: < 60) => '${elapsedTime.inSeconds}s',
Duration(inMinutes: < 60) => '${elapsedTime.inMinutes}m',
Duration(inHours: < 24) => '${elapsedTime.inHours}h',
Duration(inDays: < 365) => '${elapsedTime.inDays}d',
_ => throw UnimplementedError(),
};
}
TextStyle? get contentTextStyle => switch (widget) {
EmailContent(isThreaded: true) => _textTheme.bodyLarge,
EmailContent(isSelected: true) => _textTheme.bodyMedium
?.copyWith(color: _colorScheme.onPrimaryContainer),
_ =>
_textTheme.bodyMedium?.copyWith(color: _colorScheme.onSurfaceVariant),
};
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(20),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
LayoutBuilder(builder: (context, constraints) {
return Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
if (constraints.maxWidth - 200 > 0) ...[
CircleAvatar(
backgroundImage: AssetImage(widget.email.sender.avatarUrl),
),
const Padding(padding: EdgeInsets.symmetric(horizontal: 6.0)),
],
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
widget.email.sender.name.fullName,
overflow: TextOverflow.fade,
maxLines: 1,
style: widget.isSelected
? _textTheme.labelMedium?.copyWith(
color: _colorScheme.onSecondaryContainer)
: _textTheme.labelMedium
?.copyWith(color: _colorScheme.onSurface),
),
Text(
lastActiveLabel,
overflow: TextOverflow.fade,
maxLines: 1,
style: widget.isSelected
? _textTheme.labelMedium?.copyWith(
color: _colorScheme.onSecondaryContainer)
: _textTheme.labelMedium?.copyWith(
color: _colorScheme.onSurfaceVariant),
),
],
),
),
if (constraints.maxWidth - 200 > 0) ...[
const StarButton(),
]
],
);
}),
const SizedBox(width: 8),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
if (widget.isPreview) ...[
Text(
widget.email.subject,
style: const TextStyle(fontSize: 18)
.copyWith(color: _colorScheme.onSurface),
),
],
if (widget.isThreaded) ...[
contentSpacer,
Text(
"To ${widget.email.recipients.map((recipient) => recipient.name.first).join(", ")}",
style: _textTheme.bodyMedium,
)
],
contentSpacer,
Text(
widget.email.content,
maxLines: widget.isPreview ? 2 : 100,
overflow: TextOverflow.ellipsis,
style: contentTextStyle,
),
],
),
const SizedBox(width: 12),
widget.email.attachments.isNotEmpty
? Container(
height: 96,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(8.0),
image: DecorationImage(
fit: BoxFit.cover,
image: AssetImage(widget.email.attachments.first.url),
),
),
)
: const SizedBox.shrink(),
if (!widget.isPreview) ...[
const EmailReplyOptions(),
],
],
),
);
}
}
class EmailHeadline extends StatefulWidget {
const EmailHeadline({
super.key,
required this.email,
required this.isSelected,
});
final Email email;
final bool isSelected;
@override
State<EmailHeadline> createState() => _EmailHeadlineState();
}
class _EmailHeadlineState extends State<EmailHeadline> {
late final TextTheme _textTheme = Theme.of(context).textTheme;
late final ColorScheme _colorScheme = Theme.of(context).colorScheme;
@override
Widget build(BuildContext context) {
return LayoutBuilder(builder: (context, constraints) {
return Container(
height: 84,
color: Color.alphaBlend(
_colorScheme.primary.withOpacity(0.05),
_colorScheme.surface,
),
child: Padding(
padding: const EdgeInsets.fromLTRB(24, 12, 12, 12),
child: Row(
mainAxisSize: MainAxisSize.max,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Expanded(
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
widget.email.subject,
maxLines: 1,
overflow: TextOverflow.fade,
style: const TextStyle(
fontSize: 18, fontWeight: FontWeight.w400),
),
Text(
'${widget.email.replies.toString()} Messages',
maxLines: 1,
overflow: TextOverflow.fade,
style: _textTheme.labelMedium
?.copyWith(fontWeight: FontWeight.w500),
),
],
),
),
// Display a "condensed" version if the widget in the row are
// expected to overflow.
if (constraints.maxWidth - 200 > 0) ...[
SizedBox(
height: 40,
width: 40,
child: FloatingActionButton(
onPressed: () {},
elevation: 0,
backgroundColor: _colorScheme.surface,
child: const Icon(Icons.delete_outline),
),
),
const Padding(padding: EdgeInsets.only(right: 8.0)),
SizedBox(
height: 40,
width: 40,
child: FloatingActionButton(
onPressed: () {},
elevation: 0,
backgroundColor: _colorScheme.surface,
child: const Icon(Icons.more_vert),
),
),
]
],
),
),
);
});
}
}
class EmailReplyOptions extends StatefulWidget {
const EmailReplyOptions({super.key});
@override
State<EmailReplyOptions> createState() => _EmailReplyOptionsState();
}
class _EmailReplyOptionsState extends State<EmailReplyOptions> {
late final ColorScheme _colorScheme = Theme.of(context).colorScheme;
@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, constraints) {
if (constraints.maxWidth < 100) {
return const SizedBox.shrink();
}
return Row(
children: [
Expanded(
child: TextButton(
style: ButtonStyle(
backgroundColor:
WidgetStateProperty.all(_colorScheme.onInverseSurface),
),
onPressed: () {},
child: Text(
'Reply',
style: TextStyle(color: _colorScheme.onSurfaceVariant),
),
),
),
const SizedBox(width: 8),
Expanded(
child: TextButton(
style: ButtonStyle(
backgroundColor:
WidgetStateProperty.all(_colorScheme.onInverseSurface),
),
onPressed: () {},
child: Text(
'Reply All',
style: TextStyle(color: _colorScheme.onSurfaceVariant),
),
),
),
],
);
},
);
}
}
হ্যাঁ, সেই উইজেটে অনেক কিছু চলছে। এটি কিছু বিশদভাবে অধ্যয়ন করা মূল্যবান, বিশেষত উইজেট জুড়ে কীভাবে রঙ প্রয়োগ করা হয় তা দেখতে। এটি একটি পুনরাবৃত্ত থিম হয়ে উঠবে। এরপরে, search_bar.dart
।
lib/widgets/search_bar.dart
import 'package:flutter/material.dart';
import '../models/models.dart';
class SearchBar extends StatelessWidget {
const SearchBar({
super.key,
required this.currentUser,
});
final User currentUser;
@override
Widget build(BuildContext context) {
return SizedBox(
height: 56,
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(100),
color: Colors.white,
),
padding: const EdgeInsets.fromLTRB(31, 12, 12, 12),
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
const Icon(Icons.search),
const SizedBox(width: 23.5),
Expanded(
child: TextField(
maxLines: 1,
decoration: InputDecoration(
isDense: true,
border: InputBorder.none,
hintText: 'Search replies',
hintStyle: Theme.of(context).textTheme.bodyMedium,
),
),
),
CircleAvatar(
backgroundImage: AssetImage(currentUser.avatarUrl),
),
],
),
),
);
}
}
একটি অনেক সহজ, এবং রাষ্ট্রহীন, উইজেট। এরপরে, আরেকটি সহজ উইজেট যোগ করুন, star_button.dart
:
lib/widgets/star_button.dart
import 'package:flutter/material.dart';
class StarButton extends StatefulWidget {
const StarButton({super.key});
@override
State<StarButton> createState() => _StarButtonState();
}
class _StarButtonState extends State<StarButton> {
bool state = false;
late final ColorScheme _colorScheme = Theme.of(context).colorScheme;
Icon get icon {
final IconData iconData = state ? Icons.star : Icons.star_outline;
return Icon(
iconData,
color: Colors.grey,
size: 20,
);
}
void _toggle() {
setState(() {
state = !state;
});
}
double get turns => state ? 1 : 0;
@override
Widget build(BuildContext context) {
return AnimatedRotation(
turns: turns,
curve: Curves.decelerate,
duration: const Duration(milliseconds: 300),
child: FloatingActionButton(
elevation: 0,
shape: const CircleBorder(),
backgroundColor: _colorScheme.surface,
onPressed: () => _toggle(),
child: Padding(
padding: const EdgeInsets.all(10.0),
child: icon,
),
),
);
}
}
এরপরে, শোয়ের প্রধান তারকা, lib/main.dart
আপডেট করুন। সেই ফাইলের বর্তমান বিষয়বস্তুগুলিকে নিম্নলিখিত দিয়ে প্রতিস্থাপন করুন।
lib/main.dart
import 'package:flutter/material.dart';
import 'models/data.dart' as data;
import 'models/models.dart';
import 'widgets/email_list_view.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.light(useMaterial3: true),
home: Feed(currentUser: data.user_0),
);
}
}
class Feed extends StatefulWidget {
const Feed({
super.key,
required this.currentUser,
});
final User currentUser;
@override
State<Feed> createState() => _FeedState();
}
class _FeedState extends State<Feed> {
late final _colorScheme = Theme.of(context).colorScheme;
late final _backgroundColor = Color.alphaBlend(
_colorScheme.primary.withOpacity(0.14), _colorScheme.surface);
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
color: _backgroundColor,
child: EmailListView(
currentUser: widget.currentUser,
),
),
floatingActionButton: FloatingActionButton(
backgroundColor: _colorScheme.tertiaryContainer,
foregroundColor: _colorScheme.onTertiaryContainer,
onPressed: () {},
child: const Icon(Icons.add),
),
);
}
}
এই কোডল্যাবের দৃষ্টিকোণ থেকে এই ফাইলের সবচেয়ে গুরুত্বপূর্ণ লাইনটি হল MaterialApp
এর theme
আর্গুমেন্ট, যা useMaterial3
true
সেট করে। useMaterial3
আর্গুমেন্ট সিদ্ধান্ত নেয় যে আপনার অ্যাপের উইজেটগুলি উপাদান 2 বা উপাদান 3 ডিজাইন নির্দেশিকা অনুসারে স্টাইল করা হয়েছে কিনা। useMaterial3
আর্গুমেন্টকে true
সেট করা হলে নির্বাচনযোগ্য IconButtons
এর মতো নতুন বৈশিষ্ট্যও পাওয়া যায়।
আপনি কি দিয়ে শুরু করছেন তা দেখতে অ্যাপটি চালান।
5. একটি নেভিগেশন বার যোগ করুন
পূর্ববর্তী ধাপের শেষে স্টার্টার অ্যাপটিতে বার্তাগুলির একটি তালিকা ছিল, কিন্তু অন্য অনেক কিছু চলছে না। এই ধাপে, আপনি আরও চাক্ষুষ আগ্রহ যোগ করতে একটি NavigationBar
যোগ করুন। যেহেতু অ্যাপটি একটি UI স্কেচ থেকে একটি বাস্তব অ্যাপ্লিকেশনে রূপান্তরিত হয়, নেভিগেশন বার ব্যবহারকারীর ব্যবহারের জন্য অ্যাপ্লিকেশনটির বিভিন্ন ক্ষেত্র সরবরাহ করে।
একটি NavigationBar
থাকার অর্থ হল নেভিগেট করার জন্য গন্তব্য রয়েছে। lib
ডিরেক্টরিতে destinations.dart
নামে একটি নতুন ফাইল তৈরি করুন এবং নিম্নলিখিত কোড দিয়ে এটি পূরণ করুন।
lib/destinations.dart
import 'package:flutter/material.dart';
class Destination {
const Destination(this.icon, this.label);
final IconData icon;
final String label;
}
const List<Destination> destinations = <Destination>[
Destination(Icons.inbox_rounded, 'Inbox'),
Destination(Icons.article_outlined, 'Articles'),
Destination(Icons.messenger_outline_rounded, 'Messages'),
Destination(Icons.group_outlined, 'Groups'),
];
এটি NavigationBar
প্রদর্শনের জন্য অ্যাপ্লিকেশনটিকে চারটি গন্তব্য দেয়। এর পরে, গন্তব্যের এই তালিকাটি lib/main.dart
ফাইলে নিম্নরূপ সংযুক্ত করুন:
lib/main.dart
import 'package:flutter/material.dart';
import 'destinations.dart'; // Add this import
import 'models/data.dart' as data;
import 'models/models.dart';
import 'widgets/email_list_view.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.light(useMaterial3: true),
home: Feed(currentUser: data.user_0),
);
}
}
class Feed extends StatefulWidget {
const Feed({
super.key,
required this.currentUser,
});
final User currentUser;
@override
State<Feed> createState() => _FeedState();
}
class _FeedState extends State<Feed> {
late final _colorScheme = Theme.of(context).colorScheme;
late final _backgroundColor = Color.alphaBlend(
_colorScheme.primary.withOpacity(0.14), _colorScheme.surface);
int selectedIndex = 0; // Add this variable
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
color: _backgroundColor,
child: EmailListView(
// Add from here...
selectedIndex: selectedIndex,
onSelected: (index) {
setState(() {
selectedIndex = index;
});
},
// ... to here.
currentUser: widget.currentUser,
),
),
floatingActionButton: FloatingActionButton(
backgroundColor: _colorScheme.tertiaryContainer,
foregroundColor: _colorScheme.onTertiaryContainer,
onPressed: () {},
child: const Icon(Icons.add),
),
// Add from here...
bottomNavigationBar: NavigationBar(
elevation: 0,
backgroundColor: Colors.white,
destinations: destinations.map<NavigationDestination>((d) {
return NavigationDestination(
icon: Icon(d.icon),
label: d.label,
);
}).toList(),
selectedIndex: selectedIndex,
onDestinationSelected: (index) {
setState(() {
selectedIndex = index;
});
},
),
// ...to here.
);
}
}
প্রতিটি গন্তব্যের জন্য বিভিন্ন বিষয়বস্তু সংজ্ঞায়িত করার পরিবর্তে, NavigationBar
নির্বাচিত গন্তব্য প্রতিফলিত করতে পৃথক বার্তাগুলির অবস্থা পরিবর্তন করুন। সামঞ্জস্যের জন্য, এটি বিপরীতেও কাজ করে: একটি বার্তা নির্বাচন করা NavigationBar
সংশ্লিষ্ট গন্তব্য প্রদর্শন করে। এই পরিবর্তনগুলি যাচাই করতে অ্যাপ্লিকেশনটি চালান:
এটি একটি সংকীর্ণ কনফিগারেশনে যুক্তিসঙ্গত দেখায়, তবে আপনি যদি উইন্ডোটি আরও প্রশস্ত করেন, বা ফোন সিমুলেটরটিকে অনুভূমিকভাবে ঘোরান তবে এটি কিছুটা অদ্ভুত দেখায়। এটি ঠিক করতে, অ্যাপ্লিকেশনটি যথেষ্ট প্রশস্ত হলে স্ক্রিনের বাম দিকে একটি NavigationRail
চালু করুন। এটি পরবর্তী ধাপে পরিচালনা করা হয়।
6. একটি নেভিগেশন রেল যোগ করুন
এই ধাপটি আপনার অ্যাপ্লিকেশনে একটি NavigationRail
যোগ করে। ধারণাটি হল পর্দার আকারের উপর নির্ভর করে দুটি নেভিগেশন উইজেটের মধ্যে শুধুমাত্র একটি প্রদর্শন করা, যার মানে প্রয়োজন হলে আপনাকে ন্যাভিগেশন বার লুকাতে বা দেখাতে হবে। lib/widgets
ডিরেক্টরিতে, disappearing_bottom_navigation_bar.dart
ফাইল তৈরি করুন এবং নিম্নলিখিত কোড যোগ করুন:
lib/widgets/disappearing_bottom_navigation_bar.dart
import 'package:flutter/material.dart';
import '../destinations.dart';
class DisappearingBottomNavigationBar extends StatelessWidget {
const DisappearingBottomNavigationBar({
super.key,
required this.selectedIndex,
this.onDestinationSelected,
});
final int selectedIndex;
final ValueChanged<int>? onDestinationSelected;
@override
Widget build(BuildContext context) {
return NavigationBar(
elevation: 0,
backgroundColor: Colors.white,
destinations: destinations.map<NavigationDestination>((d) {
return NavigationDestination(
icon: Icon(d.icon),
label: d.label,
);
}).toList(),
selectedIndex: selectedIndex,
onDestinationSelected: onDestinationSelected,
);
}
}
একই ডিরেক্টরিতে, নিম্নলিখিত কোডের সাথে disappearing_navigation_rail.dart
নামে আরেকটি ফাইল যোগ করুন:
lib/widgets/disappearing_navigation_rail.dart
import 'package:flutter/material.dart';
import '../destinations.dart';
class DisappearingNavigationRail extends StatelessWidget {
const DisappearingNavigationRail({
super.key,
required this.backgroundColor,
required this.selectedIndex,
this.onDestinationSelected,
});
final Color backgroundColor;
final int selectedIndex;
final ValueChanged<int>? onDestinationSelected;
@override
Widget build(BuildContext context) {
final colorScheme = Theme.of(context).colorScheme;
return NavigationRail(
selectedIndex: selectedIndex,
backgroundColor: backgroundColor,
onDestinationSelected: onDestinationSelected,
leading: Column(
children: [
IconButton(
onPressed: () {},
icon: const Icon(Icons.menu),
),
const SizedBox(height: 8),
FloatingActionButton(
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(
Radius.circular(15),
),
),
backgroundColor: colorScheme.tertiaryContainer,
foregroundColor: colorScheme.onTertiaryContainer,
onPressed: () {},
child: const Icon(Icons.add),
),
],
),
groupAlignment: -0.85,
destinations: destinations.map((d) {
return NavigationRailDestination(
icon: Icon(d.icon),
label: Text(d.label),
);
}).toList(),
);
}
}
নেভিগেশন ইডিয়মগুলিকে তাদের নিজস্ব উইজেটে রিফ্যাক্টর করার সাথে, lib/main.dart
ফাইলের কিছু পরিবর্তন প্রয়োজন:
lib/main.dart
import 'package:flutter/material.dart';
// Remove the destination.dart import, it's not required
import 'models/data.dart' as data;
import 'models/models.dart';
import 'widgets/disappearing_bottom_navigation_bar.dart'; // Add import
import 'widgets/disappearing_navigation_rail.dart'; // Add import
import 'widgets/email_list_view.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.light(useMaterial3: true),
home: Feed(currentUser: data.user_0),
);
}
}
class Feed extends StatefulWidget {
const Feed({
super.key,
required this.currentUser,
});
final User currentUser;
@override
State<Feed> createState() => _FeedState();
}
class _FeedState extends State<Feed> {
late final _colorScheme = Theme.of(context).colorScheme;
late final _backgroundColor = Color.alphaBlend(
_colorScheme.primary.withOpacity(0.14), _colorScheme.surface);
int selectedIndex = 0;
// Add from here...
bool wideScreen = false;
@override
void didChangeDependencies() {
super.didChangeDependencies();
final double width = MediaQuery.of(context).size.width;
wideScreen = width > 600;
}
// ... to here.
@override
Widget build(BuildContext context) {
// Modify from here...
return Scaffold(
body: Row(
children: [
if (wideScreen)
DisappearingNavigationRail(
selectedIndex: selectedIndex,
backgroundColor: _backgroundColor,
onDestinationSelected: (index) {
setState(() {
selectedIndex = index;
});
},
),
Expanded(
child: Container(
color: _backgroundColor,
child: EmailListView(
selectedIndex: selectedIndex,
onSelected: (index) {
setState(() {
selectedIndex = index;
});
},
currentUser: widget.currentUser,
),
),
),
],
),
floatingActionButton: wideScreen
? null
: FloatingActionButton(
backgroundColor: _colorScheme.tertiaryContainer,
foregroundColor: _colorScheme.onTertiaryContainer,
onPressed: () {},
child: const Icon(Icons.add),
),
bottomNavigationBar: wideScreen
? null
: DisappearingBottomNavigationBar(
selectedIndex: selectedIndex,
onDestinationSelected: (index) {
setState(() {
selectedIndex = index;
});
},
),
);
// ... to here.
}
}
main.dart
ফাইলে প্রথম গুরুত্বপূর্ণ পরিবর্তন হল একটি wideScreen
স্টেট যোগ করা যা ব্যবহারকারী যখনই ডিসপ্লের মাপ পরিবর্তন করে, তা ব্রাউজার উইন্ডোর আকার পরিবর্তন করে বা ফোন ঘোরানোর মাধ্যমে আপডেট হয়। পরবর্তী পরিবর্তনটি অ্যাপটি wideScreen
মোডে আছে কিনা তার উপর নির্ভর করতে NavigationBar
এবং FloatingActionButton
পরিবর্তন করে। অবশেষে, NavigationRail
শর্তসাপেক্ষে বাম দিকে চালু করা হয় যদি পর্দা যথেষ্ট প্রশস্ত হয়। ওয়েব বা ডেস্কটপে অ্যাপ্লিকেশনটি চালান এবং দুটি ভিন্ন লেআউট দেখানোর জন্য পর্দার আকার পরিবর্তন করুন।
দুটি ভিন্ন লেআউট থাকা ভাল, তবে দুটির মধ্যে রূপান্তরটি দুর্দান্ত নয়। আরও গতিশীল উপায়ে রেলের সাথে বারটি প্রতিস্থাপন করা (এবং ভিসা বিপরীতে) এই অ্যাপ্লিকেশনটিকে নাটকীয়ভাবে উন্নত করবে। আপনি পরবর্তী ধাপে এই অ্যানিমেশন যোগ করবেন।
7. রূপান্তরগুলি অ্যানিমেট করুন
একটি অ্যানিমেটেড অভিজ্ঞতা তৈরি করার জন্য অ্যানিমেশনের একটি সিরিজ তৈরি করা জড়িত, যার প্রতিটি উপাদান যথাযথভাবে কোরিওগ্রাফ করা হয়েছে। এই অ্যানিমেশনের জন্য, আপনি আপনার প্রয়োজনীয় অ্যানিমেশন বক্ররেখার সাথে animations.dart
নামে lib
ডিরেক্টরিতে একটি নতুন ফাইল তৈরি করে শুরু করবেন।
lib/animations.dart
import 'package:flutter/animation.dart';
class BarAnimation extends ReverseAnimation {
BarAnimation({required AnimationController parent})
: super(
CurvedAnimation(
parent: parent,
curve: const Interval(0, 1 / 5),
reverseCurve: const Interval(1 / 5, 4 / 5),
),
);
}
class OffsetAnimation extends CurvedAnimation {
OffsetAnimation({required super.parent})
: super(
curve: const Interval(
2 / 5,
3 / 5,
curve: Curves.easeInOutCubicEmphasized,
),
reverseCurve: Interval(
4 / 5,
1,
curve: Curves.easeInOutCubicEmphasized.flipped,
),
);
}
class RailAnimation extends CurvedAnimation {
RailAnimation({required super.parent})
: super(
curve: const Interval(0 / 5, 4 / 5),
reverseCurve: const Interval(3 / 5, 1),
);
}
class RailFabAnimation extends CurvedAnimation {
RailFabAnimation({required super.parent})
: super(
curve: const Interval(3 / 5, 1),
);
}
class ScaleAnimation extends CurvedAnimation {
ScaleAnimation({required super.parent})
: super(
curve: const Interval(
3 / 5,
4 / 5,
curve: Curves.easeInOutCubicEmphasized,
),
reverseCurve: Interval(
3 / 5,
1,
curve: Curves.easeInOutCubicEmphasized.flipped,
),
);
}
class ShapeAnimation extends CurvedAnimation {
ShapeAnimation({required super.parent})
: super(
curve: const Interval(
2 / 5,
3 / 5,
curve: Curves.easeInOutCubicEmphasized,
),
);
}
class SizeAnimation extends CurvedAnimation {
SizeAnimation({required super.parent})
: super(
curve: const Interval(
0 / 5,
3 / 5,
curve: Curves.easeInOutCubicEmphasized,
),
reverseCurve: Interval(
2 / 5,
1,
curve: Curves.easeInOutCubicEmphasized.flipped,
),
);
}
এই বক্ররেখাগুলির বিকাশের জন্য পুনরাবৃত্তির প্রয়োজন, যা ফ্লটারের হট রিলোড অনেক সহজ করে তোলে। এই অ্যানিমেশনগুলি ব্যবহার করার জন্য, আপনার কিছু রূপান্তর প্রয়োজন। lib
ডিরেক্টরিতে transitions
নামে একটি সাবডিরেক্টরি তৈরি করুন এবং নিচের কোডের সাথে bottom_bar_transition.dart
নামে একটি ফাইল যোগ করুন:
lib/transitions/bottom_bar_transition.dart
import 'package:flutter/material.dart';
import '../animations.dart';
class BottomBarTransition extends StatefulWidget {
const BottomBarTransition(
{super.key,
required this.animation,
required this.backgroundColor,
required this.child});
final Animation<double> animation;
final Color backgroundColor;
final Widget child;
@override
State<BottomBarTransition> createState() => _BottomBarTransition();
}
class _BottomBarTransition extends State<BottomBarTransition> {
late final Animation<Offset> offsetAnimation = Tween<Offset>(
begin: const Offset(0, 1),
end: Offset.zero,
).animate(OffsetAnimation(parent: widget.animation));
late final Animation<double> heightAnimation = Tween<double>(
begin: 0,
end: 1,
).animate(SizeAnimation(parent: widget.animation));
@override
Widget build(BuildContext context) {
return ClipRect(
child: DecoratedBox(
decoration: BoxDecoration(color: widget.backgroundColor),
child: Align(
alignment: Alignment.topLeft,
heightFactor: heightAnimation.value,
child: FractionalTranslation(
translation: offsetAnimation.value,
child: widget.child,
),
),
),
);
}
}
lib/transitions
ডিরেক্টরিতে nav_rail_transition.dart
নামে আরেকটি ফাইল যোগ করুন এবং নিম্নলিখিত কোড যোগ করুন:
lib/transitions/nav_rail_transition.dart
import 'package:flutter/material.dart';
import '../animations.dart';
class NavRailTransition extends StatefulWidget {
const NavRailTransition(
{super.key,
required this.animation,
required this.backgroundColor,
required this.child});
final Animation<double> animation;
final Widget child;
final Color backgroundColor;
@override
State<NavRailTransition> createState() => _NavRailTransitionState();
}
class _NavRailTransitionState extends State<NavRailTransition> {
// The animations are only rebuilt by this method when the text
// direction changes because this widget only depends on Directionality.
late final bool ltr = Directionality.of(context) == TextDirection.ltr;
late final Animation<Offset> offsetAnimation = Tween<Offset>(
begin: ltr ? const Offset(-1, 0) : const Offset(1, 0),
end: Offset.zero,
).animate(OffsetAnimation(parent: widget.animation));
late final Animation<double> widthAnimation = Tween<double>(
begin: 0,
end: 1,
).animate(SizeAnimation(parent: widget.animation));
@override
Widget build(BuildContext context) {
return ClipRect(
child: DecoratedBox(
decoration: BoxDecoration(color: widget.backgroundColor),
child: AnimatedBuilder(
animation: widthAnimation,
builder: (context, child) {
return Align(
alignment: Alignment.topLeft,
widthFactor: widthAnimation.value,
child: FractionalTranslation(
translation: offsetAnimation.value,
child: widget.child,
),
);
},
),
),
);
}
}
এই দুটি ট্রানজিশন উইজেট নেভিগেশন রেল এবং বার উইজেটগুলিকে তাদের চেহারা এবং অদৃশ্য হয়ে যাওয়ার জন্য অ্যানিমেট করে। এই দুটি ট্রানজিশন উইজেট ব্যবহার করতে, দুটি উইজেট আপডেট করুন, disappearing_bottom_navigation_bar.dart
থেকে শুরু করে:
lib/widgets/disappearing_bottom_navigation_bar.dart
import 'package:flutter/material.dart';
import '../animations.dart'; // Add this import
import '../destinations.dart';
import '../transitions/bottom_bar_transition.dart'; // Add this import
class DisappearingBottomNavigationBar extends StatelessWidget {
const DisappearingBottomNavigationBar({
super.key,
required this.barAnimation, // Add this parameter
required this.selectedIndex,
this.onDestinationSelected,
});
final BarAnimation barAnimation; // Add this variable
final int selectedIndex;
final ValueChanged<int>? onDestinationSelected;
@override
Widget build(BuildContext context) {
// Modify from here...
return BottomBarTransition(
animation: barAnimation,
backgroundColor: Colors.white,
child: NavigationBar(
elevation: 0,
backgroundColor: Colors.white,
destinations: destinations.map<NavigationDestination>((d) {
return NavigationDestination(
icon: Icon(d.icon),
label: d.label,
);
}).toList(),
selectedIndex: selectedIndex,
onDestinationSelected: onDestinationSelected,
),
);
// ... to here.
}
}
পূর্ববর্তী পরিবর্তনটি অ্যানিমেশনগুলির একটিকে যুক্ত করে এবং একটি রূপান্তরকে সংহত করে৷ এটি আপনাকে কীভাবে নেভিগেশন বার প্রদর্শিত হবে এবং অদৃশ্য হয়ে যাবে তা নিয়ন্ত্রণ করার ক্ষমতা দেয়।
এরপরে, disappearing_navigation_rail.dart
নিম্নরূপ পরিবর্তন করুন:
lib/widgets/disappearing_navigation_rail.dart
import 'package:flutter/material.dart';
import '../animations.dart'; // Add this import
import '../destinations.dart';
import '../transitions/nav_rail_transition.dart'; // Add this import
import 'animated_floating_action_button.dart'; // Add this import
class DisappearingNavigationRail extends StatelessWidget {
const DisappearingNavigationRail({
super.key,
required this.railAnimation, // Add this parameter
required this.railFabAnimation, // Add this parameter
required this.backgroundColor,
required this.selectedIndex,
this.onDestinationSelected,
});
final RailAnimation railAnimation; // Add this variable
final RailFabAnimation railFabAnimation; // Add this variable
final Color backgroundColor;
final int selectedIndex;
final ValueChanged<int>? onDestinationSelected;
@override
Widget build(BuildContext context) {
// Delete colorScheme
// Modify from here ...
return NavRailTransition(
animation: railAnimation,
backgroundColor: backgroundColor,
child: NavigationRail(
selectedIndex: selectedIndex,
backgroundColor: backgroundColor,
onDestinationSelected: onDestinationSelected,
leading: Column(
children: [
IconButton(
onPressed: () {},
icon: const Icon(Icons.menu),
),
const SizedBox(height: 8),
AnimatedFloatingActionButton(
animation: railFabAnimation,
elevation: 0,
onPressed: () {},
child: const Icon(Icons.add),
),
],
),
groupAlignment: -0.85,
destinations: destinations.map((d) {
return NavigationRailDestination(
icon: Icon(d.icon),
label: Text(d.label),
);
}).toList(),
),
);
// ... to here.
}
}
পূর্ববর্তী কোডটি প্রবেশ করার সময় আপনার সম্ভবত একটি অনির্ধারিত উইজেট - FloatingActionButton
সম্পর্কে ত্রুটি সতর্কতার একটি সেট ছিল। এটি ঠিক করতে, নিম্নলিখিত কোড সহ lib/widgets
এ animated_floating_action_button.dart
নামে একটি ফাইল যুক্ত করুন:
lib/widgets/animated_floating_action_button.dart
import 'dart:ui';
import 'package:flutter/material.dart';
import '../animations.dart';
class AnimatedFloatingActionButton extends StatefulWidget {
const AnimatedFloatingActionButton({
super.key,
required this.animation,
this.elevation,
this.onPressed,
this.child,
});
final Animation<double> animation;
final VoidCallback? onPressed;
final Widget? child;
final double? elevation;
@override
State<AnimatedFloatingActionButton> createState() =>
_AnimatedFloatingActionButton();
}
class _AnimatedFloatingActionButton
extends State<AnimatedFloatingActionButton> {
late final ColorScheme _colorScheme = Theme.of(context).colorScheme;
late final Animation<double> _scaleAnimation =
ScaleAnimation(parent: widget.animation);
late final Animation<double> _shapeAnimation =
ShapeAnimation(parent: widget.animation);
@override
Widget build(BuildContext context) {
return ScaleTransition(
scale: _scaleAnimation,
child: FloatingActionButton(
elevation: widget.elevation,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(
Radius.circular(lerpDouble(30, 15, _shapeAnimation.value)!),
),
),
backgroundColor: _colorScheme.tertiaryContainer,
foregroundColor: _colorScheme.onTertiaryContainer,
onPressed: widget.onPressed,
child: widget.child,
),
);
}
}
অ্যাপ্লিকেশনে এই পরিবর্তনগুলি আনতে, main.dart
ফাইলটি নিম্নরূপ আপডেট করুন:
lib/main.dart
import 'package:flutter/material.dart';
import 'animations.dart'; // Add this import
import 'models/data.dart' as data;
import 'models/models.dart';
import 'widgets/animated_floating_action_button.dart'; // Add this import
import 'widgets/disappearing_bottom_navigation_bar.dart';
import 'widgets/disappearing_navigation_rail.dart';
import 'widgets/email_list_view.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.light(useMaterial3: true),
home: Feed(currentUser: data.user_0),
);
}
}
class Feed extends StatefulWidget {
const Feed({
super.key,
required this.currentUser,
});
final User currentUser;
@override
State<Feed> createState() => _FeedState();
}
// Add SingleTickerProviderStateMixin to _FeedState
class _FeedState extends State<Feed> with SingleTickerProviderStateMixin {
late final _colorScheme = Theme.of(context).colorScheme;
late final _backgroundColor = Color.alphaBlend(
_colorScheme.primary.withOpacity(0.14), _colorScheme.surface);
// Add from here...
late final _controller = AnimationController(
duration: const Duration(milliseconds: 1000),
reverseDuration: const Duration(milliseconds: 1250),
value: 0,
vsync: this);
late final _railAnimation = RailAnimation(parent: _controller);
late final _railFabAnimation = RailFabAnimation(parent: _controller);
late final _barAnimation = BarAnimation(parent: _controller);
// ... to here.
int selectedIndex = 0;
// Remove wideScreen
bool controllerInitialized = false; // Add this variable
@override
void didChangeDependencies() {
super.didChangeDependencies();
final double width = MediaQuery.of(context).size.width;
// Remove wideScreen reference
// Add from here ...
final AnimationStatus status = _controller.status;
if (width > 600) {
if (status != AnimationStatus.forward &&
status != AnimationStatus.completed) {
_controller.forward();
}
} else {
if (status != AnimationStatus.reverse &&
status != AnimationStatus.dismissed) {
_controller.reverse();
}
}
if (!controllerInitialized) {
controllerInitialized = true;
_controller.value = width > 600 ? 1 : 0;
}
// ... to here.
}
// Add from here ...
@override
void dispose() {
_controller.dispose();
super.dispose();
}
// ... to here.
@override
Widget build(BuildContext context) {
// Modify from here ...
return AnimatedBuilder(
animation: _controller,
builder: (context, _) {
return Scaffold(
body: Row(
children: [
DisappearingNavigationRail(
railAnimation: _railAnimation,
railFabAnimation: _railFabAnimation,
selectedIndex: selectedIndex,
backgroundColor: _backgroundColor,
onDestinationSelected: (index) {
setState(() {
selectedIndex = index;
});
},
),
Expanded(
child: Container(
color: _backgroundColor,
child: EmailListView(
selectedIndex: selectedIndex,
onSelected: (index) {
setState(() {
selectedIndex = index;
});
},
currentUser: widget.currentUser,
),
),
),
],
),
floatingActionButton: AnimatedFloatingActionButton(
animation: _barAnimation,
onPressed: () {},
child: const Icon(Icons.add),
),
bottomNavigationBar: DisappearingBottomNavigationBar(
barAnimation: _barAnimation,
selectedIndex: selectedIndex,
onDestinationSelected: (index) {
setState(() {
selectedIndex = index;
});
},
),
);
},
);
// ... to here.
}
}
অ্যাপটি চালান। প্রাথমিকভাবে, এটি আগের মতো দেখতে হবে। আকার এবং মাত্রার উপর নির্ভর করে নেভিগেশন রেল এবং নেভিগেশন বারের মধ্যে UI টগল দেখতে পর্দার আকার পরিবর্তন করুন। এই পরিবর্তনের গতি এখন তরল এবং কৌতুকপূর্ণ প্রদর্শিত হবে. এটি কীভাবে অ্যাপ্লিকেশনের অনুভূতি পরিবর্তন করে তা দেখতে ব্যবহৃত অ্যানিমেশন কার্ভগুলি পরিবর্তন করতে হট রিলোড ব্যবহার করুন৷
8. একটি তালিকা/বিশদ দৃশ্য যোগ করা
একটি বোনাস হিসাবে, একটি বার্তাপ্রেরণ অ্যাপ্লিকেশন একটি তালিকা/বিশদ বিন্যাস প্রদর্শন করার জন্য একটি দুর্দান্ত জায়গা, তবে শুধুমাত্র যদি প্রদর্শন যথেষ্ট প্রশস্ত হয়। lib/widgets
এ reply_list_view.dart
নামে একটি ফাইল যোগ করে শুরু করুন এবং নিম্নলিখিত কোড দিয়ে এটি পূরণ করুন:
lib/widgets/reply_list_view.dart
import 'package:flutter/material.dart';
import '../models/data.dart' as data;
import 'email_widget.dart';
class ReplyListView extends StatelessWidget {
const ReplyListView({super.key});
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.only(right: 8.0),
child: ListView(
children: [
const SizedBox(height: 8),
...List.generate(data.replies.length, (index) {
return Padding(
padding: const EdgeInsets.only(bottom: 8.0),
child: EmailWidget(
email: data.replies[index],
isPreview: false,
isThreaded: true,
showHeadline: index == 0,
),
);
}),
],
),
);
}
}
এর পরে, lib/transitions
এ একটি list_detail_transition.dart
যোগ করুন এবং নিম্নলিখিত কোড দিয়ে এটি পূরণ করুন:
lib/transitions/list_detail_transition.dart
import 'dart:ui';
import 'package:flutter/material.dart';
import '../animations.dart';
class ListDetailTransition extends StatefulWidget {
const ListDetailTransition({
super.key,
required this.animation,
required this.one,
required this.two,
});
final Animation<double> animation;
final Widget one;
final Widget two;
@override
State<ListDetailTransition> createState() => _ListDetailTransitionState();
}
class _ListDetailTransitionState extends State<ListDetailTransition> {
Animation<double> widthAnimation = const AlwaysStoppedAnimation(0);
late final Animation<double> sizeAnimation =
SizeAnimation(parent: widget.animation);
late final Animation<Offset> offsetAnimation = Tween<Offset>(
begin: const Offset(1, 0),
end: Offset.zero,
).animate(OffsetAnimation(parent: sizeAnimation));
double currentFlexFactor = 0;
@override
void didChangeDependencies() {
super.didChangeDependencies();
final double width = MediaQuery.of(context).size.width;
double nextFlexFactor = switch (width) {
>= 800 && < 1200 => lerpDouble(1000, 2000, (width - 800) / 400)!,
>= 1200 && < 1600 => lerpDouble(2000, 3000, (width - 1200) / 400)!,
>= 1600 => 3000,
_ => 1000,
};
if (nextFlexFactor == currentFlexFactor) {
return;
}
if (currentFlexFactor == 0) {
widthAnimation =
Tween<double>(begin: 0, end: nextFlexFactor).animate(sizeAnimation);
} else {
final TweenSequence<double> sequence = TweenSequence([
if (sizeAnimation.value > 0) ...[
TweenSequenceItem(
tween: Tween(begin: 0, end: widthAnimation.value),
weight: sizeAnimation.value,
),
],
if (sizeAnimation.value < 1) ...[
TweenSequenceItem(
tween: Tween(begin: widthAnimation.value, end: nextFlexFactor),
weight: 1 - sizeAnimation.value,
),
],
]);
widthAnimation = sequence.animate(sizeAnimation);
}
currentFlexFactor = nextFlexFactor;
}
@override
Widget build(BuildContext context) {
return widthAnimation.value.toInt() == 0
? widget.one
: Row(
children: [
Flexible(
flex: 1000,
child: widget.one,
),
Flexible(
flex: widthAnimation.value.toInt(),
child: FractionalTranslation(
translation: offsetAnimation.value,
child: widget.two,
),
),
],
);
}
}
নিম্নরূপ lib/main.dart
আপডেট করে এই বিষয়বস্তুকে অ্যাপে সংহত করুন:
lib/main.dart
import 'package:flutter/material.dart';
import 'animations.dart';
import 'models/data.dart' as data;
import 'models/models.dart';
import 'transitions/list_detail_transition.dart'; // Add import
import 'widgets/animated_floating_action_button.dart';
import 'widgets/disappearing_bottom_navigation_bar.dart';
import 'widgets/disappearing_navigation_rail.dart';
import 'widgets/email_list_view.dart';
import 'widgets/reply_list_view.dart'; // Add import
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.light(useMaterial3: true),
home: Feed(currentUser: data.user_0),
);
}
}
class Feed extends StatefulWidget {
const Feed({
super.key,
required this.currentUser,
});
final User currentUser;
@override
State<Feed> createState() => _FeedState();
}
class _FeedState extends State<Feed> with SingleTickerProviderStateMixin {
late final _colorScheme = Theme.of(context).colorScheme;
late final _backgroundColor = Color.alphaBlend(
_colorScheme.primary.withOpacity(0.14), _colorScheme.surface);
late final _controller = AnimationController(
duration: const Duration(milliseconds: 1000),
reverseDuration: const Duration(milliseconds: 1250),
value: 0,
vsync: this);
late final _railAnimation = RailAnimation(parent: _controller);
late final _railFabAnimation = RailFabAnimation(parent: _controller);
late final _barAnimation = BarAnimation(parent: _controller);
int selectedIndex = 0;
bool controllerInitialized = false;
@override
void didChangeDependencies() {
super.didChangeDependencies();
final double width = MediaQuery.of(context).size.width;
final AnimationStatus status = _controller.status;
if (width > 600) {
if (status != AnimationStatus.forward &&
status != AnimationStatus.completed) {
_controller.forward();
}
} else {
if (status != AnimationStatus.reverse &&
status != AnimationStatus.dismissed) {
_controller.reverse();
}
}
if (!controllerInitialized) {
controllerInitialized = true;
_controller.value = width > 600 ? 1 : 0;
}
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return AnimatedBuilder(
animation: _controller,
builder: (context, _) {
return Scaffold(
body: Row(
children: [
DisappearingNavigationRail(
railAnimation: _railAnimation,
railFabAnimation: _railFabAnimation,
selectedIndex: selectedIndex,
backgroundColor: _backgroundColor,
onDestinationSelected: (index) {
setState(() {
selectedIndex = index;
});
},
),
Expanded(
child: Container(
color: _backgroundColor,
// Update from here ...
child: ListDetailTransition(
animation: _railAnimation,
one: EmailListView(
selectedIndex: selectedIndex,
onSelected: (index) {
setState(() {
selectedIndex = index;
});
},
currentUser: widget.currentUser,
),
two: const ReplyListView(),
),
// ... to here.
),
),
],
),
floatingActionButton: AnimatedFloatingActionButton(
animation: _barAnimation,
onPressed: () {},
child: const Icon(Icons.add),
),
bottomNavigationBar: DisappearingBottomNavigationBar(
barAnimation: _barAnimation,
selectedIndex: selectedIndex,
onDestinationSelected: (index) {
setState(() {
selectedIndex = index;
});
},
),
);
},
);
}
}
এটি সব একসাথে টানা দেখতে অ্যাপটি চালান। আপনার কাছে ম্যাটেরিয়াল 3 স্টাইলিং এবং বিভিন্ন লেআউটের মধ্যে অ্যানিমেশন রয়েছে, এমন একটি অ্যাপে যা একটি বাস্তব অ্যাপ্লিকেশনকে উপস্থাপন করে। এটি নিম্নরূপ দেখতে হবে:
9. অভিনন্দন
অভিনন্দন, আপনি সফলভাবে আপনার প্রথম উপাদান 3 ফ্লাটার অ্যাপ তৈরি করেছেন!
কোডে এই কোডল্যাবের সমস্ত ধাপ পর্যালোচনা করতে, অনুগ্রহ করে এটিকে ফ্লাটার কোডল্যাব গিটহাব রিপোজিটরিতে দেখুন।
এরপর কি?
এই কোডল্যাবগুলির কিছু পরীক্ষা করে দেখুন...
- ফ্লটার এবং ফ্লেম দিয়ে একটি গেম তৈরি করা
- আপনার ফ্লটার অ্যাপটিকে বিরক্তিকর থেকে সুন্দরের দিকে নিয়ে যান
- একটি ফ্লাটার প্লাগইনে FFI ব্যবহার করা
আরও পড়া
- Flutter এ উপাদান 3 আপডেট সম্পর্কে আরও পড়ুন
- Flutter Material 3 ডকুমেন্টেশন দেখুন
- সমস্ত উপাদান 3 সম্পদ পর্যালোচনা করুন