-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from Avila-Tek/FCL-SendDataBloc
feat: SendDataBloc
- Loading branch information
Showing
17 changed files
with
975 additions
and
353 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import 'package:avilatek_ui/avilatek_ui.dart'; | ||
import 'package:flutter/material.dart'; | ||
|
||
class CustomTagsPage extends StatelessWidget { | ||
const CustomTagsPage({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
appBar: AppBar( | ||
title: const Text('Custom Tags'), | ||
), | ||
body: Align( | ||
alignment: Alignment.center, | ||
child: SingleChildScrollView( | ||
padding: const EdgeInsets.all(16), | ||
child: Column( | ||
children: [ | ||
CustomTag.primaryOne( | ||
context, | ||
child: const Text('Primary color tag'), | ||
), | ||
const SizedBox(height: 16), | ||
CustomTag.green( | ||
context, | ||
child: const Text('Green tag'), | ||
), | ||
const SizedBox(height: 16), | ||
CustomTag.yellow( | ||
context, | ||
child: const Text('Yellow tag'), | ||
), | ||
const SizedBox(height: 16), | ||
CustomTag.red( | ||
context, | ||
child: const Text('Red tag'), | ||
), | ||
const SizedBox(height: 16), | ||
CustomTag.grey( | ||
context, | ||
child: const Text('Neutral tag'), | ||
), | ||
], | ||
), | ||
), | ||
), | ||
); | ||
} | ||
} |
Oops, something went wrong.