{"id":15549089,"url":"https://github.com/lohanidamodar/flutter_bottom_reveal","last_synced_at":"2026-03-05T22:03:36.093Z","repository":{"id":56826728,"uuid":"197555253","full_name":"lohanidamodar/flutter_bottom_reveal","owner":"lohanidamodar","description":"An animated bottom reveal widget","archived":false,"fork":false,"pushed_at":"2022-03-15T18:40:45.000Z","size":2500,"stargazers_count":16,"open_issues_count":2,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-30T02:21:53.376Z","etag":null,"topics":["flutter","flutter-animation","flutter-package"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/bottomreveal","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lohanidamodar.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-07-18T09:24:17.000Z","updated_at":"2023-10-18T02:43:47.000Z","dependencies_parsed_at":"2022-09-20T22:02:00.711Z","dependency_job_id":null,"html_url":"https://github.com/lohanidamodar/flutter_bottom_reveal","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lohanidamodar%2Fflutter_bottom_reveal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lohanidamodar%2Fflutter_bottom_reveal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lohanidamodar%2Fflutter_bottom_reveal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lohanidamodar%2Fflutter_bottom_reveal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lohanidamodar","download_url":"https://codeload.github.com/lohanidamodar/flutter_bottom_reveal/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229556344,"owners_count":18091745,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flutter","flutter-animation","flutter-package"],"created_at":"2024-10-02T13:27:49.024Z","updated_at":"2026-03-05T22:03:31.065Z","avatar_url":"https://github.com/lohanidamodar.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bottom Reveal\nAn animated Bottom reveal widget, that reveals widgets placed in its back view.\n\n\u003cimg src=\"https://raw.githubusercontent.com/lohanidamodar/flutter_bottom_reveal/master/screenshot/bottomreveal.gif\" height=\"480px\"\u003e \n\n## Usage\nTo use this plugin, add `bottomreveal` as [dependency in your pubspec.yaml file](https://flutter.dev/docs/development/packages-and-plugins/using-packages)\n\n## Example\n\n```dart\nimport 'package:flutter/material.dart';\nimport 'package:bottomreveal/bottomreveal.dart';\n\nvoid main() =\u003e runApp(MyApp());\n\nclass MyApp extends StatelessWidget{\n  @override\n  Widget build(BuildContext context) {\n    return MaterialApp(\n      home:  HomePage(),\n    );\n  }\n}\n\n\nclass HomePage extends StatefulWidget {\n  @override\n  _HomePageState createState() =\u003e _HomePageState();\n}\n\nclass _HomePageState extends State\u003cHomePage\u003e {\n  final BottomRevealController _menuController = BottomRevealController();\n  @override\n  Widget build(BuildContext context){\n    return Scaffold(\n      appBar: AppBar(\n        title: Text('Bottom Reveal Example App'),\n      ),\n      body: BottomReveal(\n        openIcon: Icons.add,\n        closeIcon: Icons.close,\n        revealWidth: 100,\n        revealHeight: 100,\n        backColor: Colors.grey.shade900,\n        rightContent: Column(\n          mainAxisSize: MainAxisSize.min,\n          children: \u003cWidget\u003e[\n            MaterialButton(\n              minWidth: 0,\n              child: Icon(Icons.cloud_circle),\n              color: Colors.grey.shade200,\n              elevation: 0,\n              onPressed:() {},\n            ),\n            MaterialButton(\n              minWidth: 0,\n              child: Icon(Icons.network_wifi),\n              color: Colors.grey.shade200,\n              elevation: 0,\n              onPressed:() {},\n            ),\n          ],\n        ),\n        bottomContent: TextField(\n          decoration: InputDecoration(\n            filled: true,\n            fillColor: Colors.grey,\n            contentPadding: const EdgeInsets.all(8.0),\n            border: OutlineInputBorder(\n              gapPadding: 8.0,\n              borderSide: BorderSide(color: Colors.grey),\n              borderRadius: BorderRadius.circular(30.0)\n            )\n          ),\n        ),\n        controller: _menuController,\n        body: ListView.builder(\n          padding: const EdgeInsets.all(16.0),\n          itemBuilder: (_,index)=\u003eCard(\n            child: ListTile(\n              title: Text(\"Item $index\"),\n              leading: Icon(Icons.cloud_circle),\n            ),\n          ),\n        ),\n      ),\n    );\n  }\n}\n\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flohanidamodar%2Fflutter_bottom_reveal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flohanidamodar%2Fflutter_bottom_reveal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flohanidamodar%2Fflutter_bottom_reveal/lists"}