Skip to content

Instantly share code, notes, and snippets.

@adityajoshi12
Created December 8, 2020 07:08
Show Gist options
  • Save adityajoshi12/38d6bdc313ecf7ff1e106a0671628e3b to your computer and use it in GitHub Desktop.
Save adityajoshi12/38d6bdc313ecf7ff1e106a0671628e3b to your computer and use it in GitHub Desktop.
// 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