module Turbo::Native::Navigation

def hotwire_native_app?

Legacy Turbo Native applications use the "Turbo Native" string.
Hotwire Native applications are identified by having the string "Hotwire Native" as part of their user agent.
def hotwire_native_app?
  request.user_agent.to_s.match?(/(Turbo|Hotwire) Native/)
end