Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gold Miner | 32,062 | 3 days ago | 3 | |||||||
🥇掘金翻译计划,可能是世界最大最好的英译中技术社区,最懂读者和译者的翻译平台: | ||||||||||
Nhost | 6,426 | 9 | a day ago | 91 | September 20, 2022 | 159 | mit | TypeScript | ||
The Open Source Firebase Alternative with GraphQL. | ||||||||||
Fluentui System Icons | 4,457 | 30 | 2 days ago | 143 | September 13, 2022 | 133 | mit | HTML | ||
Fluent System Icons are a collection of familiar, friendly and modern icons from Microsoft. | ||||||||||
Tnt Weekly | 4,389 | 6 months ago | ||||||||
🙈 🙉 🙊 每周为您推荐国内外前端领域最新的优秀文章以及行业进展 | ||||||||||
Iconoir | 3,044 | 7 | 3 days ago | 11 | September 23, 2022 | 36 | mit | TypeScript | ||
An open source icons library with 1300+ icons, supporting React, React Native, Flutter, CSS, Figma, and Framer. | ||||||||||
Frontend Hard Mode Interview | 2,896 | 2 months ago | 7 | other | JavaScript | |||||
《前端内参》,有关于JavaScript、编程范式、设计模式、软件开发的艺术等大前端范畴内的知识分享,旨在帮助前端工程师们夯实技术基础以通过一线互联网企业技术面试。 | ||||||||||
Cloudbase Framework | 1,827 | 21 | 6 months ago | 130 | August 23, 2022 | 37 | other | JavaScript | ||
腾讯云开发云原生一体化部署工具 🚀 CloudBase Framework:一键部署,不限框架语言,云端一体化开发,基于Serverless 架构。A front-end and back-end integrated deployment tool. One-click deploy to serverless architecture. https://docs.cloudbase.net/framework/index | ||||||||||
Projectlearn Project Based Learning | 1,582 | 2 months ago | 7 | mit | JavaScript | |||||
A curated list of project tutorials for project-based learning. | ||||||||||
Learning Article | 1,555 | 4 years ago | 5 | mit | ||||||
学习资源 or 大前端导航,持续更新 | ||||||||||
Front End Rss | 1,508 | a day ago | 1 | JavaScript | ||||||
:orange_book: 根据 RSS 订阅源抓取最新前端技术文章,来源:Node Weekly、JavaScript Weekly、前端早读课、前端大全、前端之巅、前端之神、前端技术优选、程序员成长指北、淘系前端团队、张鑫旭博客、前端里、凹凸实验室 |
A Work In Progress 🚧 crypto exchange app to try off Flutter potential
I have been working on a similar app built with React Native and encounter some problems especially in implementing a custom design therefore I make this project as experiment to try out if those problems could be addressed in a better way using Flutter.
For this situation the whole app has a background image and on top of it we need a:
When the user scroll up we want to the banner disappear, the TabBar and SortBar stick on top and (if there are many coin items) allow the user to scroll around the items.
One why to achieve this in React Native could be move the rendering of the react-native-tab-view (yes, this is the fastest way to the a TabView in React Native app) component inside the FlatList first item together with a SortBar component and use stickyHeaderIndices to make it stick on top when scrolling up.
But still, once we scroll up the list, all the items in the TabView will go under the transparent sticky header.
In Flatter we have CustomScrollView and Slivers that allow us to handle each aspect of the scrolling.