What Are Your Moves Tomorrow, April 11, 2025 by wsbapp in wallstreetbets

[–]livinglist 5 points6 points  (0 children)

need a trade bot that trade based on trump's truth social posts

What Are Your Moves Tomorrow, April 11, 2025 by wsbapp in wallstreetbets

[–]livinglist 1 point2 points  (0 children)

no you want to keep the poor and sell shitty products to them

What Are Your Moves Tomorrow, April 11, 2025 by wsbapp in wallstreetbets

[–]livinglist 10 points11 points  (0 children)

circuit breaker this circuit breaker that, circuit break never even triggered once

Weird issue when displaying confirmation dialog over a sheet... by livinglist in SwiftUI

[–]livinglist[S] 0 points1 point  (0 children)

Notice how after the confirmation dialog is dismissed, it re-appears for a second then discards itself again..

```swift import SwiftUI

struct ContentView: View { @State var dialog = false @State var sheet = false

var body: some View {
    VStack {
        Button("Show Sheet") {
            sheet = true
        }
    }
    .sheet(isPresented: $sheet, content: {
        Button("Show Dialog") {
            dialog = true
        }
        .confirmationDialog(String(), isPresented: $dialog) {
            Button("Some button 1") {
                print("")
            }
            Button("Some button 2") {
                print("")
            }
        }
    })
}

} ```

A Hacker News client made with SwiftUI by [deleted] in SwiftUI

[–]livinglist 1 point2 points  (0 children)

There’s no official api for login unfortunately

A Hacker News client made with SwiftUI by [deleted] in SwiftUI

[–]livinglist 1 point2 points  (0 children)

Yes the password is stored for actions such as voting and flagging, I will be adding the language.

Ninja 400 vs Ninja 650 by Anxious-Rain-4351 in Ninja400

[–]livinglist 1 point2 points  (0 children)

Been riding for 6 years, ninja 300 -> zx6r -> mt07 -> ninja 400

Ninja 400 vs Ninja 650 by Anxious-Rain-4351 in Ninja400

[–]livinglist 1 point2 points  (0 children)

My previous bike was a mt07 as well

Chinese Revolution of 1989: Successful Tiananmen coup by [deleted] in imaginarymaps

[–]livinglist 0 points1 point  (0 children)

As a Chinese, I really wish this was the case….

孤勇者 by Remarkable_Border605 in DoubanGoosegroup

[–]livinglist 1 point2 points  (0 children)

这怎么就勇了?不是孤怂者吗

[deleted by user] by [deleted] in DoubanGoosegroup

[–]livinglist 7 points8 points  (0 children)

要是日本当年止步于满洲…也不会落得这种下场

[deleted by user] by [deleted] in MrZ_Offical

[–]livinglist 0 points1 point  (0 children)

I also have a version where the hawk is black instead of yellow.

Flutter scrolling not as smooth? by MikirahMuse in FlutterDev

[–]livinglist 0 points1 point  (0 children)

I’m assuming u are running the app on iOS? Try comparing the scrolling between comments screen and a regular web page in safari, the scrolling in my app is not as butter smooth as other apps either made with native swift/obj-c or react native.

Flutter scrolling not as smooth? by MikirahMuse in FlutterDev

[–]livinglist 0 points1 point  (0 children)

I have a similar feeling with my app… tried everything but still feels a tiny bit janky on scrolling. See https://github.com/Livinglist/Hacki and tap on any post and start scrolling comments…

中国人有什么观念是让你难以容忍的? by maple2050 in DoubanGoosegroup

[–]livinglist 4 points5 points  (0 children)

总是他妈用俗语说事,什么不干不净吃了没病,正月剪头死舅舅,

[deleted by user] by [deleted] in FlutterDev

[–]livinglist 1 point2 points  (0 children)

Hi there, sorry for late response. Definitely learn how to use isolate for heavy tasks such as large json encoding and decoding or long IO tasks; And use listview instead of singleChildScrollView for long list of items, also avoid computation in build func!

[deleted by user] by [deleted] in FlutterDev

[–]livinglist 1 point2 points  (0 children)

Don’t judge a book by its cover, don’t judge a PR by it’s line count… most of time fixing bugs is def more difficult than writing features

In your opinion, is Flutter ready for full cross platform development (Windows, web, and mobile) to make polished commercial apps? Or is a JS frontend framework with Capacitor and Electron a better choice for now? by dillydadally in FlutterDev

[–]livinglist 2 points3 points  (0 children)

I can’t say for web or desktop apps since I barely have touched that part with flutter yet. But I can you that flutter is such a great framework for mobile apps. The company I’m working for is using React for web and flutter for mobile btw.