Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/view/articel_list_sceen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import 'package:tec/view/single.dart';

// ignore: must_be_immutable
class ArticleListScreen extends StatelessWidget {
String title;

ArticleListScreen({required this.title,Key? key}) : super(key: key);

ListArcticleController listarcticleController =
Expand All @@ -24,7 +24,7 @@ class ArticleListScreen extends StatelessWidget {
return SafeArea(

child: Scaffold(
appBar: appBar(title),
appBar: appBar(listarcticleController.screenTitle.value),
body: Padding(
padding: const EdgeInsets.all(8.0),
child: SizedBox(
Expand Down