Created
December 8, 2020 07:08
-
-
Save adityajoshi12/38d6bdc313ecf7ff1e106a0671628e3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// details_view.dart | |
import 'package:flutter/material.dart'; | |
import 'package:get/get.dart'; | |
class DetailsView extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text('DetailsView'), | |
centerTitle: true, | |
), | |
body: Center( | |
child: Text( | |
'day'.tr, | |
style: TextStyle(fontSize: 20), | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment